Changeset 18428 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Mar 28, 2009 1:54:31 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapsimple.cpp
r14318 r18428 314 314 if ((uintptr_t)pvMemory & 31) 315 315 { 316 const u nsignedoff = 32 - ((uintptr_t)pvMemory & 31);316 const uintptr_t off = 32 - ((uintptr_t)pvMemory & 31); 317 317 cbMemory -= off; 318 318 pHeapInt = (PRTHEAPSIMPLEINTERNAL)((uintptr_t)pvMemory + off);
Note:
See TracChangeset
for help on using the changeset viewer.