Changeset 73401 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jul 31, 2018 8:28:41 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124019
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp
r73375 r73401 57 57 RTDbgCfgRelease(pThis->hDbgCfg); 58 58 pThis->hDbgCfg = NIL_RTDBGCFG; 59 pThis->uMagic = UINT32_C(0xdeadf00d); 59 60 RTMemFree(pThis); 60 61 } … … 640 641 pDeferred->cbImage = cbImage; 641 642 pDeferred->cRefs = 1 + (pDbgMod->pImgVt == NULL); 643 pDeferred->uMagic = UINT32_C(0xbeef0001); 642 644 if (hDbgCfg != NIL_RTDBGCFG) 643 645 RTDbgCfgRetain(hDbgCfg); -
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r73375 r73401 547 547 /** Reference counter. */ 548 548 uint32_t volatile cRefs; 549 /** Magic value for debug purposes. */ 550 uint32_t uMagic; 549 551 /** The configuration instance (referenced), can be NIL. */ 550 552 RTDBGCFG hDbgCfg;
Note:
See TracChangeset
for help on using the changeset viewer.