Changeset 24989 in vbox for trunk/src/VBox/Main/generic
- Timestamp:
- Nov 26, 2009 11:31:46 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55293
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r22875 r24989 139 139 140 140 ComPtr<IHost> host; 141 HRESULT rc = pVBox->COMGETTER(Host)(host.asOutParam());142 if (SUCCEEDED(rc))143 { 144 rc = progress->init(pVBox, host,141 HRESULT hrc = pVBox->COMGETTER(Host)(host.asOutParam()); 142 if (SUCCEEDED(hrc)) 143 { 144 hrc = progress->init(pVBox, host, 145 145 Bstr ("Creating host only network interface"), 146 146 FALSE /* aCancelable */); 147 if (SUCCEEDED(rc))147 if (SUCCEEDED(hrc)) 148 148 { 149 CheckComRCReturnRC(rc);150 149 progress.queryInterfaceTo(aProgress); 151 150 … … 208 207 } 209 208 210 return rc;209 return hrc; 211 210 212 211 #else
Note:
See TracChangeset
for help on using the changeset viewer.