- Timestamp:
- Aug 2, 2010 9:17:22 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Runtime/r3/alloc.cpp ¶
r31252 r31274 166 166 167 167 void *pv = realloc(pvOld, cbNew); 168 AssertMsg(pv &&cbNew, ("realloc(%p, %#zx) failed!!!\n", pvOld, cbNew));168 AssertMsg(pv || !cbNew, ("realloc(%p, %#zx) failed!!!\n", pvOld, cbNew)); 169 169 AssertMsg( cbNew < RTMEM_ALIGNMENT 170 170 || !((uintptr_t)pv & (RTMEM_ALIGNMENT - 1))
Note:
See TracChangeset
for help on using the changeset viewer.