VirtualBox

Ignore:
Timestamp:
Mar 12, 2009 1:18:06 PM (16 years ago)
Author:
vboxsync
Message:

VBoxBFE: Fixed segmentation fault when adding a directory instead of a file to HDA or HDB.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp

    r17542 r17743  
    16811681            rc = CFGMR3InsertString(pCfg, "Format",       "SPF");                   UPDATE_RC();
    16821682        }
    1683         else if (!strcmp(RTPathExt(g_pszHdaFile), ".vdi"))
    1684         {
    1685             rc = CFGMR3InsertString(pCfg, "Format",       "VDI");                   UPDATE_RC();
    1686         }
    16871683        else
    16881684        {
    1689             rc = CFGMR3InsertString(pCfg, "Format",       "VMDK");                  UPDATE_RC();
     1685            char *pcExt = RTPathExt(g_pszHdaFile);
     1686            if ((pcExt) && (!strcmp(pcExt, ".vdi")))
     1687            {
     1688                rc = CFGMR3InsertString(pCfg, "Format",       "VDI");               UPDATE_RC();
     1689            }
     1690            else
     1691            {
     1692                rc = CFGMR3InsertString(pCfg, "Format",       "VMDK");              UPDATE_RC();
     1693            }
    16901694        }
    16911695    }
     
    17081712            rc = CFGMR3InsertString(pCfg, "Format",       "SPF");                   UPDATE_RC();
    17091713        }
    1710         else if (!strcmp(RTPathExt(g_pszHdbFile), ".vdi"))
    1711         {
    1712             rc = CFGMR3InsertString(pCfg, "Format",       "VDI");                   UPDATE_RC();
    1713         }
    17141714        else
    17151715        {
    1716             rc = CFGMR3InsertString(pCfg, "Format",       "VMDK");                  UPDATE_RC();
     1716            char *pcExt = RTPathExt(g_pszHdbFile);
     1717            if ((pcExt) && (!strcmp(pcExt, ".vdi")))
     1718            {
     1719                rc = CFGMR3InsertString(pCfg, "Format",       "VDI");               UPDATE_RC();
     1720            }
     1721            else
     1722            {
     1723                rc = CFGMR3InsertString(pCfg, "Format",       "VMDK");              UPDATE_RC();
     1724            }
    17171725        }
    17181726    }
Note: See TracChangeset for help on using the changeset viewer.

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