Changeset 34406 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Nov 26, 2010 4:45:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/isofs.cpp
r33566 r34406 45 45 static void rtIsoFsDestroyPathCache(PRTISOFSFILE pFile) 46 46 { 47 PRTISOFSPATHTABLEENTRY pNode = RTList NodeGetFirst(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node);47 PRTISOFSPATHTABLEENTRY pNode = RTListGetFirst(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node); 48 48 while (pNode) 49 49 { … … 120 120 uint16_t idx = 1; 121 121 /* Get the parent of our current node (pNode) */ 122 PRTISOFSPATHTABLEENTRY pNodeParent = RTList NodeGetFirst(pList, RTISOFSPATHTABLEENTRY, Node);122 PRTISOFSPATHTABLEENTRY pNodeParent = RTListGetFirst(pList, RTISOFSPATHTABLEENTRY, Node); 123 123 while (idx++ < pNode->header.parent_index) 124 124 pNodeParent = RTListNodeGetNext(&pNodeParent->Node, RTISOFSPATHTABLEENTRY, Node); … … 202 202 203 203 /* Transform path names into full paths. This is a bit ugly right now. */ 204 PRTISOFSPATHTABLEENTRY pNode = RTList NodeGetLast(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node);204 PRTISOFSPATHTABLEENTRY pNode = RTListGetLast(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node); 205 205 while ( pNode 206 206 && !RTListNodeIsFirst(&pFile->listPaths, &pNode->Node) … … 416 416 if (!RTStrCmp(pszTemp, ".")) /* Root directory? Use first node! */ 417 417 { 418 pNode = RTList NodeGetFirst(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node);418 pNode = RTListGetFirst(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node); 419 419 if (pNode) 420 420 bFound = true;
Note:
See TracChangeset
for help on using the changeset viewer.