Changeset 50245 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 27, 2014 2:01:19 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/USBProxyDevice.cpp
r50234 r50245 590 590 { 591 591 pProxyDev->cIgnoreSetConfigs = 0; 592 if (!pProxyDev->pOps->pfnSetConfig(pProxyDev, bConfigurationValue)) 592 int rc = pProxyDev->pOps->pfnSetConfig(pProxyDev, bConfigurationValue); 593 if (RT_FAILURE(rc)) 593 594 { 594 595 pProxyDev->iActiveCfg = -1; 595 return VERR_GENERAL_FAILURE;596 return rc; 596 597 } 597 598 pProxyDev->iActiveCfg = bConfigurationValue;
Note:
See TracChangeset
for help on using the changeset viewer.