VirtualBox

Changeset 62461 in vbox for trunk/src


Ignore:
Timestamp:
Jul 22, 2016 4:21:26 PM (8 years ago)
Author:
vboxsync
Message:

IPRT: scm

Location:
trunk/src/VBox/Runtime
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/crypto/RTCrStoreCertAddWantedFromFishingExpedition.cpp

    r57699 r62461  
    245245RT_EXPORT_SYMBOL(RTCrStoreCertAddWantedFromFishingExpedition);
    246246
    247 
  • trunk/src/VBox/Runtime/common/crypto/digest-builtin.cpp

    r62448 r62461  
    552552 * OpenSSL EVP.
    553553 */
    554    
     554
    555555# if OPENSSL_VERSION_NUMBER >= 0x10100000
    556556/** @impl_interface_method{RTCRDIGESTDESC::pfnNew} */
  • trunk/src/VBox/Runtime/common/misc/json.cpp

    r62446 r62461  
    3737#include <iprt/stream.h>
    3838#include <iprt/string.h>
     39
    3940
    4041/*********************************************************************************************************************************
     
    248249typedef RTJSONREADERARGS *PRTJSONREADERARGS;
    249250
     251
    250252/*********************************************************************************************************************************
    251253*   Global variables                                                                                                             *
     
    294296    /*
    295297     * In case we reached the end of the stream don't even attempt to read new data.
    296      * Safety precaution for possible bugs in the parser causing out of bounds reads 
     298     * Safety precaution for possible bugs in the parser causing out of bounds reads
    297299     */
    298300    if (pTokenizer->achBuf[pTokenizer->offBuf] == '\0')
  • trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp

    r57974 r62461  
    397397 * Launch a simple assertion like complaint w/ panic.
    398398 *
    399  * @param   SRC_POS             The source position where call is being made from. 
     399 * @param   SRC_POS             The source position where call is being made from.
    400400 * @param   pszWhat             What we're complaining about.
    401401 * @param   ...                 Format arguments.
  • trunk/src/VBox/Runtime/common/misc/uri.cpp

    r58069 r62461  
    11621162}
    11631163
    1164 
  • trunk/src/VBox/Runtime/generic/createtemp-generic.cpp

    r57613 r62461  
    280280RT_EXPORT_SYMBOL(RTFileOpenTemp);
    281281
    282 
  • trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp

    r60603 r62461  
    4747
    4848
    49 /*******************************************************************************
    50 *   Defined Constants And Macros                                               *
    51 *******************************************************************************/
     49/*********************************************************************************************************************************
     50*   Defined Constants And Macros                                                                                                 *
     51*********************************************************************************************************************************/
    5252#if defined(DOXYGEN_RUNNING)
    5353# define RTR0MEM_EF_IN_FRONT
     
    113113
    114114
    115 /*******************************************************************************
    116 *   Header Files                                                               *
    117 *******************************************************************************/
     115/*********************************************************************************************************************************
     116*   Header Files                                                                                                                 *
     117*********************************************************************************************************************************/
    118118#ifdef RT_OS_WINDOWS
    119119# include <Windows.h>
     
    125125
    126126
    127 /*******************************************************************************
    128 *   Structures and Typedefs                                                    *
    129 *******************************************************************************/
     127/*********************************************************************************************************************************
     128*   Structures and Typedefs                                                                                                      *
     129*********************************************************************************************************************************/
    130130/**
    131131 * Allocation types.
  • trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c

    r60457 r62461  
    376376    /*
    377377     * Reserve the pages.
    378      * 
     378     *
    379379     * Linux >= 4.5 with CONFIG_DEBUG_VM panics when setting PG_reserved on compound
    380380     * pages. According to Michal Hocko this shouldn't be necessary anyway because
  • trunk/src/VBox/Runtime/r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp

    r60054 r62461  
    5858    if (orc == noErr)
    5959    {
    60         CFIndex const cTrustSettings = CFArrayGetCount(hTrustSettings);
     60        CFIndex const cTrustSettings = CFArrayGetCount(hTrustSettings);
    6161        for (CFIndex i = 0; i < cTrustSettings; i++)
    6262        {
     
    247247RT_EXPORT_SYMBOL(RTCrStoreCreateSnapshotById);
    248248
    249 
  • trunk/src/VBox/Runtime/r3/posix/localipc-posix.cpp

    r61120 r62461  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define LOG_GROUP RTLOGGROUP_LOCALIPC
    3232#include "internal/iprt.h"
     
    6060
    6161
    62 /*******************************************************************************
    63 *   Structures and Typedefs                                                    *
    64 *******************************************************************************/
     62/*********************************************************************************************************************************
     63*   Structures and Typedefs                                                                                                      *
     64*********************************************************************************************************************************/
    6565/**
    6666 * Local IPC service instance, POSIX.
     
    10641064}
    10651065
    1066 
    1067 
  • trunk/src/VBox/Runtime/r3/win/VBoxRT-msvcr100-win32.def

    r57864 r62461  
    277277  ?swprintf@@YAHPAGIPBGZZ
    278278  ?swprintf@@YAHPA_WIPB_WZZ
    279   ?terminate@@YAXXZ ;fixme-causes-trouble-with-version-in-libcmt.lib; 
     279  ?terminate@@YAXXZ ;fixme-causes-trouble-with-version-in-libcmt.lib;
    280280  ?try_lock@critical_section@Concurrency@@QAE_NXZ
    281281  ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ
     
    16391639  wscanf_s
    16401640
    1641 
  • trunk/src/VBox/Runtime/r3/win/vcc100-ntdll-fakes.cpp

    r57905 r62461  
    7373}
    7474
    75 
  • trunk/src/VBox/Runtime/testcase/tstRTCrX509-1.cpp

    r59692 r62461  
    195195}
    196196
    197 
  • trunk/src/VBox/Runtime/testcase/tstRTPathGlob.cpp

    r57613 r62461  
    8080}
    8181
    82 
  • trunk/src/VBox/Runtime/testcase/tstRTUdp-1.cpp

    r57970 r62461  
    3434#define RT_TEST_UDP_LOCAL_HOST         "localhost"
    3535#define RT_TEST_UDP_SERVER_PORT        52000
     36
    3637
    3738/*********************************************************************************************************************************
  • trunk/src/VBox/Runtime/testcase/tstRTVfs.cpp

    r57638 r62461  
    3535#include <iprt/file.h>
    3636#include <iprt/string.h>
     37
    3738
    3839/*********************************************************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette