Changeset 6478 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Jan 24, 2008 12:31:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r5999 r6478 41 41 PRTMEMHDR rtMemAlloc(size_t cb, uint32_t fFlags) 42 42 { 43 Assert(cb != sizeof(void *)); /* 99% of pointer sized allocations are wrong. */44 43 PRTMEMHDR pHdr = (PRTMEMHDR)ExAllocatePoolWithTag(NonPagedPool, cb + sizeof(*pHdr), IPRT_NT_POOL_TAG); 45 44 if (pHdr)
Note:
See TracChangeset
for help on using the changeset viewer.