Changeset 70157 in vbox for trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
- Timestamp:
- Dec 15, 2017 4:18:28 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r70153 r70157 77 77 { 78 78 pHdr->u32Magic += 1; 79 ExFreePool(pHdr); 79 if (g_pfnrtExFreePoolWithTag) 80 g_pfnrtExFreePoolWithTag(pHdr, IPRT_NT_POOL_TAG); 81 else 82 ExFreePool(pHdr); 80 83 } 81 84
Note:
See TracChangeset
for help on using the changeset viewer.