VirtualBox

Changeset 60165 in vbox


Ignore:
Timestamp:
Mar 23, 2016 1:24:09 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
106186
Message:

VBoxUsbToolGetStringDescriptor: bytes -

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxUSB/win/cmn/VBoxUsbTool.cpp

    r60159 r60165  
    158158        if (pDr->bLength >= sizeof (USB_STRING_DESCRIPTOR))
    159159        {
    160 #if 0 /* WTF? */
    161             UNICODE_STRING Unicode;
    162             ANSI_STRING Ansi;
    163             /* for some reason the string dr sometimes contains a non-null terminated string
    164              * although we zeroed up the complete descriptor buffer
    165              * this is why RtlInitUnicodeString won't work*/
    166             VBoxUsbToolStringDescriptorToUnicodeString(pDr, &Unicode);
    167             Ansi.Buffer = pszResult;
    168             Ansi.Length = 0;
    169             Ansi.MaximumLength = (USHORT)cbResult - 1;
    170             memset(pszResult, 0, cbResult);
    171             Status = RtlUnicodeStringToAnsiString(&Ansi, &Unicode, FALSE);
    172             Assert(Status == STATUS_SUCCESS);
    173             if (NT_SUCCESS(Status))
    174             {
    175                 /* just to make sure the string is null-terminated */
    176                 Assert(pszResult[cbResult-1] == 0);
    177                 Status = STATUS_SUCCESS;
    178             }
    179 #else
    180             int rc = RTUtf16ToUtf8Ex(pDr->bString, pDr->bLength - RT_OFFSETOF(USB_STRING_DESCRIPTOR, bString),
     160            int rc = RTUtf16ToUtf8Ex(pDr->bString, (pDr->bLength - RT_OFFSETOF(USB_STRING_DESCRIPTOR, bString)) / sizeof(RTUTF16),
    181161                                     &pszResult, cbResult, NULL /*pcch*/);
    182162            if (RT_SUCCESS(rc))
     
    187167            else
    188168                Status = STATUS_UNSUCCESSFUL;
    189 #endif
    190169        }
    191170        else
    192         {
    193171            Status = STATUS_INVALID_PARAMETER;
    194         }
    195172    }
    196173    return Status;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette