VirtualBox

Changeset 35608 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Jan 18, 2011 2:19:31 PM (14 years ago)
Author:
vboxsync
Message:

Main: silently ignore removable media that cannot be found when loading machine settings XML

Location:
trunk/src/VBox/Main/src-server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/MachineImpl.cpp

    r35528 r35608  
    75407540                }
    75417541                else
    7542                     rc = mParent->findRemoveableMedium(dev.deviceType, dev.uuid, false /* fRefresh */, medium);
    7543                 if (FAILED(rc))
    7544                     return rc;
     7542                    mParent->findRemoveableMedium(dev.deviceType,
     7543                                                  dev.uuid,
     7544                                                  false /* fRefresh */,
     7545                                                  false /* aSetError */,
     7546                                                  medium);
     7547                        // note: do NOT fail if a removeable medium cannot be found, silently ignore the error completely
    75457548            break;
    75467549
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r35435 r35608  
    28352835                                         const Guid &uuid,
    28362836                                         bool fRefresh,
     2837                                         bool aSetError,
    28372838                                         ComObjPtr<Medium> &pMedium)
    28382839{
     
    28512852    if (rc == VBOX_E_OBJECT_NOT_FOUND)
    28522853                // then search for an image with that UUID
    2853         rc = findDVDOrFloppyImage(mediumType, &uuid, Utf8Str::Empty, true /* aSetError */, &pMedium);
     2854        rc = findDVDOrFloppyImage(mediumType, &uuid, Utf8Str::Empty, aSetError, &pMedium);
    28542855
    28552856    return rc;
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