Changeset 39191 in vbox
- Timestamp:
- Nov 3, 2011 3:23:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
r39189 r39191 348 348 * 349 349 * */ 350 RTUtf16ToUtf8((PCRTUTF16)pDrList->StrDr.bString, lppszString); 350 int rc = RTUtf16ToUtf8((PCRTUTF16)pDrList->StrDr.bString, lppszString); 351 if (RT_FAILURE(rc)) 352 { 353 AssertMsgFailed(("RTUtf16ToUtf8 failed, rc (%d), resuming\n", rc)); 354 continue; 355 } 356 357 Assert(lppszString); 351 358 if (pDrList->iDr == pConInfo->DeviceDescriptor.iSerialNumber) 352 359 {
Note:
See TracChangeset
for help on using the changeset viewer.