VirtualBox

Changeset 41222 in vbox for trunk/src


Ignore:
Timestamp:
May 9, 2012 8:51:22 AM (13 years ago)
Author:
vboxsync
Message:

GuestCtrl/Main: Check for tool status when creating guest directories.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestCtrlImplDir.cpp

    r40685 r41222  
    134134        {
    135135            hr = setErrorFromProgress(pProgress);
     136            if (SUCCEEDED(hr))
     137            {
     138                VBOXGUESTCTRL_PROCESS proc;
     139                int rc = processGetStatus(uPID, &proc,
     140                                          true /* Remove when terminated */);
     141                if (RT_SUCCESS(rc))
     142                {
     143                    if (   proc.mStatus   != ExecuteProcessStatus_TerminatedNormally
     144                        || proc.mExitCode != 0)
     145                    {
     146                        hr = setErrorNoLog(VBOX_E_IPRT_ERROR,
     147                                           tr("Could not create directory \"%s\""), Utf8Str(aDirectory).c_str());
     148                    }
     149                }
     150                else
     151                    hr = setErrorNoLog(VBOX_E_IPRT_ERROR,
     152                                       tr("Unable to retrieve status for creating directory \"%s\""),
     153                                       Utf8Str(aDirectory).c_str());
     154            }
    136155            pProgress.setNull();
    137156        }
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