- Timestamp:
- Oct 26, 2010 12:41:38 PM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r33462 r33466 36 36 #include <iprt/mem.h> 37 37 #include <iprt/path.h> 38 #include <iprt/param.h> 38 39 #include <iprt/string.h> 39 40 #include <iprt/thread.h> -
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.