VirtualBox

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


Ignore:
Timestamp:
Aug 7, 2018 6:27:41 PM (6 years ago)
Author:
vboxsync
Message:

ExtPack cloud stuff, XPCOM fixes. bugref:9152

File:
1 edited

Legend:

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

    r73553 r73554  
    116116        HRESULT hrc2 = mUserProfileManagers[i]->COMGETTER(SupportedProviders)(ComSafeArrayAsOutParam(FromCurrent));
    117117        if (SUCCEEDED(hrc2))
    118             for (size_t i = 0; i < FromCurrent.size(); i++)
    119                 aSupportedProviders.push_back(FromCurrent[i]);
     118            for (size_t j = 0; j < FromCurrent.size(); j++)
     119                aSupportedProviders.push_back(FromCurrent[j]);
    120120        else if (SUCCEEDED(hrc))
    121121            hrc = hrc2;
     
    142142        HRESULT hrc2 = mUserProfileManagers[i]->GetAllProfiles(ComSafeArrayAsOutParam(FromCurrent));
    143143        if (SUCCEEDED(hrc2))
    144             for (size_t i = 0; i < FromCurrent.size(); i++)
    145                 aProfilesList.push_back(FromCurrent[i]);
     144            for (size_t j = 0; j < FromCurrent.size(); j++)
     145                aProfilesList.push_back(FromCurrent[j]);
    146146        else if (SUCCEEDED(hrc))
    147147            hrc = hrc2;
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