VirtualBox

Changeset 63155 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 8, 2016 12:03:31 PM (8 years ago)
Author:
vboxsync
Message:

Main: More warnings about uninitialized variables.

File:
1 edited

Legend:

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

    r63153 r63155  
    19731973    if (RT_SUCCESS(vrc))
    19741974    {
    1975         int guestRc;
     1975        int vrcGuest = VINF_SUCCESS;
    19761976        vrc = fAsync
    19771977            ? pProcess->i_startProcessAsync()
    1978             : pProcess->i_startProcess(30 * 1000 /* 30s timeout */, &guestRc);
     1978            : pProcess->i_startProcess(30 * 1000 /* 30s timeout */, &vrcGuest);
    19791979
    19801980        if (   RT_SUCCESS(vrc)
    19811981            && !fAsync
    1982             && RT_FAILURE(guestRc)
     1982            && RT_FAILURE(vrcGuest)
    19831983           )
    19841984        {
    19851985            if (pGuestRc)
    1986                 *pGuestRc = guestRc;
     1986                *pGuestRc = vrcGuest;
    19871987            vrc = VERR_GSTCTL_GUEST_ERROR;
    19881988        }
     
    22572257    uint32_t uTimeoutMS = mStartupInfo.mTimeoutMS;
    22582258
    2259     int guestRc;
     2259    int vrcGuest = VINF_SUCCESS;
    22602260    bool fDone = false;
    22612261
     
    22932293
    22942294        vrc = pProcess->i_waitFor(fWaitFlags, GET_REMAINING_TIME,
    2295                                   waitRes, &guestRc);
     2295                                  waitRes, &vrcGuest);
    22962296        if (RT_FAILURE(vrc))
    22972297            break;
     
    23542354                                       GET_REMAINING_TIME,
    23552355                                       byBuf, sizeof(byBuf),
    2356                                        &cbRead, &guestRc);
     2356                                       &cbRead, &vrcGuest);
    23572357            if (   RT_FAILURE(vrc)
    23582358                || vrc == VWRN_GSTCTL_OBJECTSTATE_CHANGED)
     
    23882388                                       GET_REMAINING_TIME,
    23892389                                       byBuf, sizeof(byBuf),
    2390                                        &cbRead, &guestRc);
     2390                                       &cbRead, &vrcGuest);
    23912391            if (   RT_FAILURE(vrc)
    23922392                || vrc == VWRN_GSTCTL_OBJECTSTATE_CHANGED)
     
    24072407#undef GET_REMAINING_TIME
    24082408
    2409     if (RT_FAILURE(guestRc))
     2409    if (RT_FAILURE(vrcGuest))
    24102410        vrc = VERR_GSTCTL_GUEST_ERROR;
    24112411
    2412     LogFlowThisFunc(("Loop ended with rc=%Rrc, guestRc=%Rrc, waitRes=%RU32\n",
    2413                      vrc, guestRc, waitRes));
     2412    LogFlowThisFunc(("Loop ended with rc=%Rrc, vrcGuest=%Rrc, waitRes=%RU32\n",
     2413                     vrc, vrcGuest, waitRes));
    24142414    if (pGuestRc)
    2415         *pGuestRc = guestRc;
     2415        *pGuestRc = vrcGuest;
    24162416
    24172417    LogFlowFuncLeaveRC(vrc);
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