Changeset 51091 in vbox
- Timestamp:
- Apr 16, 2014 4:46:18 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VHD.cpp
r50988 r51091 442 442 { 443 443 /* Skip empty locators */ 444 if (ddh.ParentLocatorEntry[i].u32Code != RT_H2BE_U32(VHD_PLATFORM_CODE_NONE)) 445 { 446 if (pImage->pszParentFilename) 447 { 448 rc = vhdLocatorUpdate(pImage, &ddh.ParentLocatorEntry[i], pImage->pszParentFilename); 449 if (RT_FAILURE(rc)) 450 return rc; 451 } 452 else 453 { 454 /* The parent was deleted. */ 455 ddh.ParentLocatorEntry[i].u32Code = RT_H2BE_U32(VHD_PLATFORM_CODE_NONE); 456 } 444 if ( ddh.ParentLocatorEntry[i].u32Code != RT_H2BE_U32(VHD_PLATFORM_CODE_NONE) 445 && pImage->pszParentFilename) 446 { 447 rc = vhdLocatorUpdate(pImage, &ddh.ParentLocatorEntry[i], pImage->pszParentFilename); 448 if (RT_FAILURE(rc)) 449 return rc; 457 450 } 458 451 }
Note:
See TracChangeset
for help on using the changeset viewer.