Changeset 104470 in vbox
- Timestamp:
- May 2, 2024 8:42:51 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162990
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/VBoxBs3Obj2Hdr.cpp
r103656 r104470 357 357 void *pvFile; 358 358 if (!readfile(pszArg, &pvFile, &cbFile)) 359 { 360 if (pOutput) 361 fclose(pOutput); 359 362 return RTEXITCODE_FAILURE; 363 } 360 364 361 365 RTEXITCODE rcExit = ProcessObjectFile(pOutput, (uint8_t const *)pvFile, cbFile, pszArg); … … 363 367 free(pvFile); 364 368 if (rcExit != RTEXITCODE_SUCCESS) 369 { 370 if (pOutput) 371 fclose(pOutput); 365 372 return rcExit; 373 } 366 374 } 367 375 }
Note:
See TracChangeset
for help on using the changeset viewer.