Changeset 80633 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 6, 2019 4:35:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/extvfs.cpp
r80585 r80633 1193 1193 } 1194 1194 } 1195 1196 if (RT_SUCCESS(rc)) 1197 { 1198 bool fIns = RTAvlU32Insert(&pThis->InodeRoot, &pInode->Core); 1199 Assert(fIns); 1200 } 1195 1201 } 1196 1202 else … … 2292 2298 pDirEntry->szName[cbName] = '\0'; 2293 2299 pDirEntry->cbName = cbName; 2294 rc = rtFsExtInode_QueryInfo(pInode , &pDirEntry->Info, enmAddAttr);2300 rc = rtFsExtInode_QueryInfo(pInodeRef, &pDirEntry->Info, enmAddAttr); 2295 2301 if (RT_SUCCESS(rc)) 2296 2302 { 2297 2303 pThis->offEntry += RT_LE2H_U16(DirEntry.Core.cbRecord); 2298 2304 pThis->idxEntry++; 2299 rtFsExtInodeRelease(pThis->pVol, pInode );2305 rtFsExtInodeRelease(pThis->pVol, pInodeRef); 2300 2306 return VINF_SUCCESS; 2301 2307 } 2302 rtFsExtInodeRelease(pThis->pVol, pInode );2308 rtFsExtInodeRelease(pThis->pVol, pInodeRef); 2303 2309 } 2304 2310 }
Note:
See TracChangeset
for help on using the changeset viewer.