Changeset 52170 in vbox
- Timestamp:
- Jul 24, 2014 3:07:46 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95217
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r52158 r52170 792 792 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 793 793 794 HRESULTrc = i_checkUSBProxyService();794 MultiResult rc = i_checkUSBProxyService(); 795 795 if (FAILED(rc)) 796 796 return rc; … … 808 808 } 809 809 810 return S_OK;810 return rc; 811 811 #else 812 812 /* Note: The GUI depends on this method returning E_NOTIMPL with no … … 883 883 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 884 884 885 HRESULTrc = i_checkUSBProxyService();885 MultiResult rc = i_checkUSBProxyService(); 886 886 if (FAILED(rc)) 887 887 return rc; … … 892 892 (*it).queryInterfaceTo(aUSBDeviceFilters[i].asOutParam()); 893 893 894 return S_OK;894 return rc; 895 895 #else 896 896 /* Note: The GUI depends on this method returning E_NOTIMPL with no
Note:
See TracChangeset
for help on using the changeset viewer.