- Timestamp:
- Jul 22, 2016 4:21:26 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/RTCrStoreCertAddWantedFromFishingExpedition.cpp
r57699 r62461 245 245 RT_EXPORT_SYMBOL(RTCrStoreCertAddWantedFromFishingExpedition); 246 246 247 -
trunk/src/VBox/Runtime/common/crypto/digest-builtin.cpp
r62448 r62461 552 552 * OpenSSL EVP. 553 553 */ 554 554 555 555 # if OPENSSL_VERSION_NUMBER >= 0x10100000 556 556 /** @impl_interface_method{RTCRDIGESTDESC::pfnNew} */ -
trunk/src/VBox/Runtime/common/misc/json.cpp
r62446 r62461 37 37 #include <iprt/stream.h> 38 38 #include <iprt/string.h> 39 39 40 40 41 /********************************************************************************************************************************* … … 248 249 typedef RTJSONREADERARGS *PRTJSONREADERARGS; 249 250 251 250 252 /********************************************************************************************************************************* 251 253 * Global variables * … … 294 296 /* 295 297 * 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 297 299 */ 298 300 if (pTokenizer->achBuf[pTokenizer->offBuf] == '\0') -
trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp
r57974 r62461 397 397 * Launch a simple assertion like complaint w/ panic. 398 398 * 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. 400 400 * @param pszWhat What we're complaining about. 401 401 * @param ... Format arguments. -
trunk/src/VBox/Runtime/common/misc/uri.cpp
r58069 r62461 1162 1162 } 1163 1163 1164 -
trunk/src/VBox/Runtime/generic/createtemp-generic.cpp
r57613 r62461 280 280 RT_EXPORT_SYMBOL(RTFileOpenTemp); 281 281 282 -
trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp
r60603 r62461 47 47 48 48 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Defined Constants And Macros * 51 *********************************************************************************************************************************/ 52 52 #if defined(DOXYGEN_RUNNING) 53 53 # define RTR0MEM_EF_IN_FRONT … … 113 113 114 114 115 /******************************************************************************* 116 * Header Files *117 ******************************************************************************* /115 /********************************************************************************************************************************* 116 * Header Files * 117 *********************************************************************************************************************************/ 118 118 #ifdef RT_OS_WINDOWS 119 119 # include <Windows.h> … … 125 125 126 126 127 /******************************************************************************* 128 * Structures and Typedefs *129 ******************************************************************************* /127 /********************************************************************************************************************************* 128 * Structures and Typedefs * 129 *********************************************************************************************************************************/ 130 130 /** 131 131 * Allocation types. -
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r60457 r62461 376 376 /* 377 377 * Reserve the pages. 378 * 378 * 379 379 * Linux >= 4.5 with CONFIG_DEBUG_VM panics when setting PG_reserved on compound 380 380 * pages. According to Michal Hocko this shouldn't be necessary anyway because -
trunk/src/VBox/Runtime/r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp
r60054 r62461 58 58 if (orc == noErr) 59 59 { 60 60 CFIndex const cTrustSettings = CFArrayGetCount(hTrustSettings); 61 61 for (CFIndex i = 0; i < cTrustSettings; i++) 62 62 { … … 247 247 RT_EXPORT_SYMBOL(RTCrStoreCreateSnapshotById); 248 248 249 -
trunk/src/VBox/Runtime/r3/posix/localipc-posix.cpp
r61120 r62461 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_LOCALIPC 32 32 #include "internal/iprt.h" … … 60 60 61 61 62 /******************************************************************************* 63 * Structures and Typedefs *64 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Structures and Typedefs * 64 *********************************************************************************************************************************/ 65 65 /** 66 66 * Local IPC service instance, POSIX. … … 1064 1064 } 1065 1065 1066 1067 -
trunk/src/VBox/Runtime/r3/win/VBoxRT-msvcr100-win32.def
r57864 r62461 277 277 ?swprintf@@YAHPAGIPBGZZ 278 278 ?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; 280 280 ?try_lock@critical_section@Concurrency@@QAE_NXZ 281 281 ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ … … 1639 1639 wscanf_s 1640 1640 1641 -
trunk/src/VBox/Runtime/r3/win/vcc100-ntdll-fakes.cpp
r57905 r62461 73 73 } 74 74 75 -
trunk/src/VBox/Runtime/testcase/tstRTCrX509-1.cpp
r59692 r62461 195 195 } 196 196 197 -
trunk/src/VBox/Runtime/testcase/tstRTPathGlob.cpp
r57613 r62461 80 80 } 81 81 82 -
trunk/src/VBox/Runtime/testcase/tstRTUdp-1.cpp
r57970 r62461 34 34 #define RT_TEST_UDP_LOCAL_HOST "localhost" 35 35 #define RT_TEST_UDP_SERVER_PORT 52000 36 36 37 37 38 /********************************************************************************************************************************* -
trunk/src/VBox/Runtime/testcase/tstRTVfs.cpp
r57638 r62461 35 35 #include <iprt/file.h> 36 36 #include <iprt/string.h> 37 37 38 38 39 /*********************************************************************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.