Changeset 66989 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- May 19, 2017 2:42:59 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115538
- Location:
- trunk/src/VBox/Devices/USB
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/USBProxyDevice.cpp
r66913 r66989 319 319 } 320 320 321 /* Given the pointer to a n interface orendpoint descriptor, find any following321 /* Given the pointer to a configuration/interface/endpoint descriptor, find any following 322 322 * non-standard (vendor or class) descriptors. 323 323 */ … … 327 327 uint8_t type; 328 328 329 Assert(*(this_desc + 1) == VUSB_DT_INTERFACE || *(this_desc + 1) == VUSB_DT_ENDPOINT );329 Assert(*(this_desc + 1) == VUSB_DT_INTERFACE || *(this_desc + 1) == VUSB_DT_ENDPOINT || *(this_desc + 1) == VUSB_DT_CONFIG); 330 330 buf = this_desc; 331 331 332 /* Skip the current interface/endpoint descriptor. */332 /* Skip the current configuration/interface/endpoint descriptor. */ 333 333 buf += *(uint8_t *)buf; 334 334 … … 468 468 size_t cbIface; 469 469 uint32_t i, x; 470 uint8_t *tmp, *end; 470 471 471 472 descs = GetStdDescSync(pProxyDev, VUSB_DT_CONFIG, idx, 0, VUSB_DT_CONFIG_MIN_LEN); … … 514 515 out->Core.bmAttributes = cfg->bmAttributes; 515 516 out->Core.MaxPower = cfg->MaxPower; 517 518 tmp = (uint8_t *)out->pvOriginal; 519 end = tmp + tot_len; 520 521 /* Point to additional configuration descriptor bytes, if any. */ 522 AssertCompile(sizeof(out->Core) == VUSB_DT_CONFIG_MIN_LEN); 523 if (out->Core.bLength - VUSB_DT_CONFIG_MIN_LEN > 0) 524 out->pvMore = tmp + VUSB_DT_CONFIG_MIN_LEN; 525 else 526 out->pvMore = NULL; 527 528 /* Typically there might be an interface association descriptor here. */ 529 out->pvClass = collect_stray_bits(tmp, end, &out->cbClass); 516 530 517 531 for(i=0; i < 4; i++) -
trunk/src/VBox/Devices/USB/VUSBDevice.cpp
r65976 r66989 714 714 VUSBDESCCONFIG CfgDesc; 715 715 memcpy(&CfgDesc, pCfgDesc, VUSB_DT_CONFIG_MIN_LEN); 716 uint32_t cbTotal = pCfgDesc->Core.bLength; 716 uint32_t cbTotal = 0; 717 cbTotal += pCfgDesc->Core.bLength; 718 cbTotal += pCfgDesc->cbClass; 717 719 for (unsigned i = 0; i < pCfgDesc->Core.bNumInterfaces; i++) 718 720 { … … 738 740 COPY_DATA(pbBuf, cbLeft, &CfgDesc, VUSB_DT_CONFIG_MIN_LEN); 739 741 COPY_DATA(pbBuf, cbLeft, pCfgDesc->pvMore, pCfgDesc->Core.bLength - VUSB_DT_CONFIG_MIN_LEN); 742 COPY_DATA(pbBuf, cbLeft, pCfgDesc->pvClass, pCfgDesc->cbClass); 740 743 741 744 /*
Note:
See TracChangeset
for help on using the changeset viewer.