Index: /trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp
===================================================================
--- /trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp	(revision 37059)
+++ /trunk/src/VBox/HostDrivers/VBoxUSB/win/lib/VBoxUsbLib-win.cpp	(revision 37060)
@@ -413,7 +413,11 @@
     PUSB_NODE_CONNECTION_NAME pName = (PUSB_NODE_CONNECTION_NAME)RTMemAllocZ(Name.ActualLength);
     if (!pName)
+    {
+        AssertFailed();
         return VERR_OUT_OF_RESOURCES;
+    }
 
     int rc = VINF_SUCCESS;
+    pName->ConnectionIndex = iPort;
     if (DeviceIoControl(hHub, IOCTL_USB_GET_NODE_CONNECTION_NAME, pName, Name.ActualLength, pName, Name.ActualLength, &cbReturned, NULL))
     {
@@ -425,4 +429,5 @@
     else
     {
+        AssertFailed();
         rc = VERR_GENERAL_FAILURE;
     }
