Changeset 60165 in vbox
- Timestamp:
- Mar 23, 2016 1:24:09 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106186
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/cmn/VBoxUsbTool.cpp
r60159 r60165 158 158 if (pDr->bLength >= sizeof (USB_STRING_DESCRIPTOR)) 159 159 { 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), 181 161 &pszResult, cbResult, NULL /*pcch*/); 182 162 if (RT_SUCCESS(rc)) … … 187 167 else 188 168 Status = STATUS_UNSUCCESSFUL; 189 #endif190 169 } 191 170 else 192 {193 171 Status = STATUS_INVALID_PARAMETER; 194 }195 172 } 196 173 return Status;
Note:
See TracChangeset
for help on using the changeset viewer.