Changeset 77699 in vbox
- Timestamp:
- Mar 13, 2019 11:22:08 PM (6 years ago)
- Location:
- trunk/src/VBox/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/Parallels.cpp
r76553 r77699 264 264 pRegion->cRegionBlocksOrBytes = pImage->cbSize; 265 265 } 266 else 267 parallelsFreeImage(pImage, false); 266 268 267 269 LogFlowFunc(("returns %Rrc\n", rc)); -
trunk/src/VBox/Storage/VHD.cpp
r76589 r77699 796 796 pImage->cBlockAllocationTableEntries * sizeof(uint32_t)); 797 797 if (RT_FAILURE(rc)) 798 { 799 RTMemFree(pBlockAllocationTable); 798 800 return rc; 801 } 799 802 800 803 /* … … 871 874 872 875 if (RT_FAILURE(rc)) 876 { 877 vhdFreeImage(pImage, false); 873 878 return rc; 879 } 874 880 875 881 switch (RT_BE2H_U32(vhdFooter.DiskType))
Note:
See TracChangeset
for help on using the changeset viewer.