Changeset 69815 in vbox
- Timestamp:
- Nov 23, 2017 6:51:01 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r69814 r69815 2733 2733 else 2734 2734 { 2735 RTVFSDIR hVfs Dir;2735 RTVFSDIR hVfsSubDir; 2736 2736 RTVfsLockAcquireWrite(pThis->Base.hLock); 2737 rc = pThis->pOps->pfnOpenDir(pThis->Base.pvThis, ".", 0 /** @todo fFlags*/, &hVfs Dir);2737 rc = pThis->pOps->pfnOpenDir(pThis->Base.pvThis, ".", 0 /** @todo fFlags*/, &hVfsSubDir); 2738 2738 RTVfsLockReleaseWrite(pThis->Base.hLock); 2739 2739 if (RT_SUCCESS(rc)) 2740 2740 { 2741 *phVfsObj = RTVfsObjFromDir(hVfs Dir);2742 RTVfsDirRelease(hVfs Dir);2741 *phVfsObj = RTVfsObjFromDir(hVfsSubDir); 2742 RTVfsDirRelease(hVfsSubDir); 2743 2743 AssertStmt(*phVfsObj != NIL_RTVFSOBJ, rc = VERR_INTERNAL_ERROR_3); 2744 2744 }
Note:
See TracChangeset
for help on using the changeset viewer.

