Changeset 46613 in vbox for trunk/src/VBox/Storage/VMDK.cpp
- Timestamp:
- Jun 18, 2013 10:27:13 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86497
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VMDK.cpp
r44528 r46613 524 524 525 525 static void vmdkFreeStreamBuffers(PVMDKEXTENT pExtent); 526 static voidvmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent,527 526 static int vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent, 527 bool fDelete); 528 528 529 529 static int vmdkCreateExtents(PVMDKIMAGE pImage, unsigned cExtents); … … 2862 2862 * Internal: free the memory used by the extent data structure, optionally 2863 2863 * deleting the referenced files. 2864 * 2865 * @returns VBox status code. 2866 * @param pImage Pointer to the image instance data. 2867 * @param pExtent The extent to free. 2868 * @param fDelete Flag whether to delete the backing storage. 2864 2869 */ 2865 static void vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent, 2866 bool fDelete) 2867 { 2870 static int vmdkFreeExtentData(PVMDKIMAGE pImage, PVMDKEXTENT pExtent, 2871 bool fDelete) 2872 { 2873 int rc = VINF_SUCCESS; 2874 2868 2875 vmdkFreeGrainDirectory(pExtent); 2869 2876 if (pExtent->pDescData) … … 2875 2882 { 2876 2883 /* Do not delete raw extents, these have full and base names equal. */ 2877 vmdkFileClose(pImage, &pExtent->pFile,2878 fDelete2879 && pExtent->pszFullname2880 && strcmp(pExtent->pszFullname, pExtent->pszBasename));2884 rc =vmdkFileClose(pImage, &pExtent->pFile, 2885 fDelete 2886 && pExtent->pszFullname 2887 && strcmp(pExtent->pszFullname, pExtent->pszBasename)); 2881 2888 } 2882 2889 if (pExtent->pszBasename) … … 2891 2898 } 2892 2899 vmdkFreeStreamBuffers(pExtent); 2900 2901 return rc; 2893 2902 } 2894 2903 … … 4321 4330 { 4322 4331 for (unsigned i = 0 ; i < pImage->cExtents; i++) 4323 vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete); 4332 { 4333 int rc2 = vmdkFreeExtentData(pImage, &pImage->pExtents[i], fDelete); 4334 if (RT_SUCCESS(rc)) 4335 rc = rc2; /* Propogate any error when closing the file. */ 4336 } 4324 4337 RTMemFree(pImage->pExtents); 4325 4338 pImage->pExtents = NULL; … … 4327 4340 pImage->cExtents = 0; 4328 4341 if (pImage->pFile != NULL) 4329 vmdkFileClose(pImage, &pImage->pFile, fDelete); 4330 vmdkFileCheckAllClose(pImage); 4342 { 4343 int rc2 = vmdkFileClose(pImage, &pImage->pFile, fDelete); 4344 if (RT_SUCCESS(rc)) 4345 rc = rc2; /* Propogate any error when closing the file. */ 4346 } 4347 int rc2 = vmdkFileCheckAllClose(pImage); 4348 if (RT_SUCCESS(rc)) 4349 rc = rc2; /* Propogate any error when closing the file. */ 4331 4350 4332 4351 if (pImage->pGTCache) … … 5517 5536 goto rollback; 5518 5537 /* Close the extent file. */ 5519 vmdkFileClose(pImage, &pExtent->pFile, false); 5538 rc = vmdkFileClose(pImage, &pExtent->pFile, false); 5539 if (RT_FAILURE(rc)) 5540 goto rollback; 5541 5520 5542 /* Rename the extent file. */ 5521 5543 rc = vdIfIoIntFileMove(pImage->pIfIo, pExtent->pszFullname, apszNewName[i], 0); … … 5526 5548 } 5527 5549 /* Release all old stuff. */ 5528 vmdkFreeImage(pImage, false); 5550 rc = vmdkFreeImage(pImage, false); 5551 if (RT_FAILURE(rc)) 5552 goto rollback; 5529 5553 5530 5554 fImageFreed = true;
Note:
See TracChangeset
for help on using the changeset viewer.