Changeset 51914 in vbox for trunk/src/VBox/Runtime/common/ldr
- Timestamp:
- Jul 8, 2014 12:38:45 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r51913 r51914 2352 2352 /* 2353 2353 * Allocate a temporary memory buffer. 2354 * Note! The _4K that gets subtracted is to avoid that the 16-byte heap 2355 * block header in ring-0 (iprt) caused any unnecessary internal 2356 * heap fragmentation. 2354 2357 */ 2355 2358 #ifdef IN_RING0 2356 uint32_t cbScratch = _256K ;2359 uint32_t cbScratch = _256K - _4K; 2357 2360 #else 2358 2361 uint32_t cbScratch = _1M;
Note:
See TracChangeset
for help on using the changeset viewer.