VirtualBox

Changeset 51091 in vbox


Ignore:
Timestamp:
Apr 16, 2014 4:46:18 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
93362
Message:

Storage/VHD: Don't clear parent locator entries if there is no parent filename, just leave it as is

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/VHD.cpp

    r50988 r51091  
    442442    {
    443443        /* 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;
    457450        }
    458451    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette