Changeset 66736 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- May 2, 2017 12:01:39 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115140
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r66652 r66736 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #define LOG_GROUP RTLOGGROUP_FS 31 32 #include <iprt/vfs.h> 32 33 #include <iprt/vfslowlevel.h> … … 35 36 #include <iprt/err.h> 36 37 #include <iprt/file.h> 38 #include <iprt/log.h> 37 39 #include <iprt/mem.h> 38 40 #include <iprt/param.h> … … 1905 1907 AssertPtrReturn(pThis, UINT32_MAX); 1906 1908 AssertReturn(pThis->uMagic == RTVFSDIR_MAGIC, UINT32_MAX); 1907 return rtVfsObjRetain(&pThis->Base); 1909 uint32_t cRefs = rtVfsObjRetain(&pThis->Base); 1910 LogFlow(("RTVfsDirRetain(%p/%p) -> %#x\n", pThis, pThis->Base.pvThis)); 1911 return cRefs; 1908 1912 } 1909 1913 … … 1916 1920 AssertPtrReturn(pThis, UINT32_MAX); 1917 1921 AssertReturn(pThis->uMagic == RTVFSDIR_MAGIC, UINT32_MAX); 1918 return rtVfsObjRelease(&pThis->Base); 1922 #ifdef LOG_ENABLED 1923 void *pvThis = pThis->Base.pvThis; 1924 #endif 1925 uint32_t cRefs = rtVfsObjRelease(&pThis->Base); 1926 LogFlow(("RTVfsDirRelease(%p/%p) -> %#x\n", pThis, pvThis)); 1927 return cRefs; 1919 1928 } 1920 1929
Note:
See TracChangeset
for help on using the changeset viewer.