Changeset 38200 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB/win
- Timestamp:
- Jul 27, 2011 2:34:03 PM (13 years ago)
- Location:
- trunk/src/VBox/HostDrivers/VBoxUSB/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
r37431 r38200 766 766 } 767 767 768 char nameEmptyBuf = '0'; 768 769 LPSTR lpszName = NULL; 769 770 rc = usbLibDevStrDriverKeyGet(hHub, iPort, &lpszName); 770 if (RT_FAILURE(rc)) 771 { 772 return rc; 773 } 774 775 Assert(lpszName); 771 Assert(!!lpszName == !!RT_SUCCESS(rc)); 772 if (!lpszName) 773 lpszName = &nameEmptyBuf; 776 774 777 775 PUSB_CONFIGURATION_DESCRIPTOR pCfgDr = NULL; -
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbMon.cpp
r37757 r38200 258 258 else 259 259 { 260 AssertFailed();260 Log(("IoGetDeviceObjectPointer returned Status (0x%x) for %S returned\n", Status, szwHubName)); 261 261 } 262 262 } -
trunk/src/VBox/HostDrivers/VBoxUSB/win/mon/VBoxUsbMon.h
r37038 r38200 32 32 33 33 #include "../cmn/VBoxDrvTool.h" 34 35 #ifdef Log36 # undef Log37 # define Log(_m) DbgPrint _m38 #endif39 40 #ifdef LogRel41 # undef LogRel42 # define LogRel(_m) DbgPrint _m43 #endif44 45 #ifdef LogFlow46 # undef LogFlow47 # define LogFlow(_m) DbgPrint _m48 #endif49 50 34 #include "../cmn/VBoxUsbTool.h" 51 35
Note:
See TracChangeset
for help on using the changeset viewer.