Changeset 66737 in vbox
- Timestamp:
- May 2, 2017 12:07:35 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115141
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r66736 r66737 1908 1908 AssertReturn(pThis->uMagic == RTVFSDIR_MAGIC, UINT32_MAX); 1909 1909 uint32_t cRefs = rtVfsObjRetain(&pThis->Base); 1910 LogFlow(("RTVfsDirRetain(%p/%p) -> %#x\n", pThis, pThis->Base.pvThis ));1910 LogFlow(("RTVfsDirRetain(%p/%p) -> %#x\n", pThis, pThis->Base.pvThis, cRefs)); 1911 1911 return cRefs; 1912 1912 } … … 1924 1924 #endif 1925 1925 uint32_t cRefs = rtVfsObjRelease(&pThis->Base); 1926 LogFlow(("RTVfsDirRelease(%p/%p) -> %#x\n", pThis, pvThis ));1926 LogFlow(("RTVfsDirRelease(%p/%p) -> %#x\n", pThis, pvThis, cRefs)); 1927 1927 return cRefs; 1928 1928 }
Note:
See TracChangeset
for help on using the changeset viewer.