VirtualBox

Changeset 69815 in vbox


Ignore:
Timestamp:
Nov 23, 2017 6:51:01 PM (7 years ago)
Author:
vboxsync
Message:

build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp

    r69814 r69815  
    27332733        else
    27342734        {
    2735             RTVFSDIR hVfsDir;
     2735            RTVFSDIR hVfsSubDir;
    27362736            RTVfsLockAcquireWrite(pThis->Base.hLock);
    2737             rc = pThis->pOps->pfnOpenDir(pThis->Base.pvThis, ".", 0 /** @todo fFlags*/, &hVfsDir);
     2737            rc = pThis->pOps->pfnOpenDir(pThis->Base.pvThis, ".", 0 /** @todo fFlags*/, &hVfsSubDir);
    27382738            RTVfsLockReleaseWrite(pThis->Base.hLock);
    27392739            if (RT_SUCCESS(rc))
    27402740            {
    2741                 *phVfsObj = RTVfsObjFromDir(hVfsDir);
    2742                 RTVfsDirRelease(hVfsDir);
     2741                *phVfsObj = RTVfsObjFromDir(hVfsSubDir);
     2742                RTVfsDirRelease(hVfsSubDir);
    27432743                AssertStmt(*phVfsObj != NIL_RTVFSOBJ, rc = VERR_INTERNAL_ERROR_3);
    27442744            }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette