Changeset 73554 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 7, 2018 6:27:41 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp
r73553 r73554 116 116 HRESULT hrc2 = mUserProfileManagers[i]->COMGETTER(SupportedProviders)(ComSafeArrayAsOutParam(FromCurrent)); 117 117 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]); 120 120 else if (SUCCEEDED(hrc)) 121 121 hrc = hrc2; … … 142 142 HRESULT hrc2 = mUserProfileManagers[i]->GetAllProfiles(ComSafeArrayAsOutParam(FromCurrent)); 143 143 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]); 146 146 else if (SUCCEEDED(hrc)) 147 147 hrc = hrc2;
Note:
See TracChangeset
for help on using the changeset viewer.