Changeset 33466 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Oct 26, 2010 12:41:38 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67057
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/isofs.cpp
r33463 r33466 376 376 *ppRec = pRec; 377 377 rc = VINF_SUCCESS; 378 break;379 378 } 380 379 else 381 380 rc = VERR_NO_MEMORY; 381 break; 382 382 } 383 383 } … … 526 526 { 527 527 /* Get actual file record. */ 528 PRTISOFSDIRRECORD pFileRecord ;528 PRTISOFSDIRRECORD pFileRecord = NULL; /* shut up gcc*/ 529 529 rc = rtIsoFsFindEntry(pFile, 530 531 532 533 530 RTPathFilename(pszPath), 531 pDirRecord->extent_location, 532 pDirRecord->extent_data_length, 533 &pFileRecord); 534 534 if (RT_SUCCESS(rc)) 535 535 {
Note:
See TracChangeset
for help on using the changeset viewer.