Changeset 33566 in vbox
- Timestamp:
- Oct 28, 2010 3:30:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/isofs.cpp
r33540 r33566 417 417 { 418 418 pNode = RTListNodeGetFirst(&pFile->listPaths, RTISOFSPATHTABLEENTRY, Node); 419 bFound = true; 419 if (pNode) 420 bFound = true; 420 421 } 421 422 else … … 433 434 if (bFound) 434 435 { 436 AssertPtr(pNode); 435 437 *puSector = pNode->header.sector_dir_table; 436 438 rc = VINF_SUCCESS; 437 439 } 440 else 441 rc = VERR_FILE_NOT_FOUND; 438 442 RTStrFree(pszTemp); 439 443 }
Note:
See TracChangeset
for help on using the changeset viewer.