儲存庫 vbox 的更動 67539
- 時間撮記:
- 2017-6-21 下午12:54:41 (7 年 以前)
- 位置:
- trunk/src/VBox/Runtime/common/fs
- 檔案:
-
- 修改 2 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/common/fs/isomaker.cpp
r67538 r67539 3203 3203 * Just morph pFile into a boot catalog file. 3204 3204 */ 3205 if (pFile->enmSrcType )3205 if (pFile->enmSrcType == RTFSISOMAKERSRCTYPE_VFS_FILE) 3206 3206 { 3207 3207 RTVfsFileRelease(pFile->u.hVfsFile); -
trunk/src/VBox/Runtime/common/fs/isomakerimport.cpp
r67538 r67539 1138 1138 pEntry->uLoadSeg, pEntry->cEmulatedSectorsToLoad, 1139 1139 pEntry->bSelectionCriteriaType, pbSelCrit, cbSelCrit); 1140 if (RT_FAILURE(rc)) 1140 if (RT_SUCCESS(rc)) 1141 pThis->pResults->cBootCatEntries += 1 + *pcSkip; 1142 else 1141 1143 rtFsIsoImpError(pThis, rc, "RTFsIsoMakerBootCatSetSectionEntry failed for entry #%#x: %Rrc", iEntry, rc); 1142 1144 return rc; … … 1169 1171 int rc = RTFsIsoMakerBootCatSetSectionHeaderEntry(pThis->hIsoMaker, iEntry, RT_LE2H_U16(pEntry->cEntries), 1170 1172 pEntry->bPlatformId, pszId); 1171 if (RT_FAILURE(rc)) 1173 if (RT_SUCCESS(rc)) 1174 pThis->pResults->cBootCatEntries++; 1175 else 1172 1176 rtFsIsoImpError(pThis, rc, 1173 1177 "RTFsIsoMakerBootCatSetSectionHeaderEntry failed for entry #%#x (bPlatformId=%#x cEntries=%#x): %Rrc", … … 1258 1262 return rtFsIsoImpError(pThis, rc, "RTFsIsoMakerBootCatSetValidationEntry(,%#x,%s) failed: %Rrc", 1259 1263 pValEntry->bPlatformId, pszId); 1264 Assert(pThis->pResults->cBootCatEntries == UINT32_MAX); 1265 pThis->pResults->cBootCatEntries = 0; 1260 1266 1261 1267 /*
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器