Changeset 58158 in vbox for trunk/src/VBox/RDP
- Timestamp:
- Oct 9, 2015 5:25:13 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103266
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/RDP/client-1.8.3/vrdp/rdpusb.c
r55551 r58158 376 376 PUSBPROXYDEV proxy = g_proxies; 377 377 378 while (proxy && proxy-> devid!= devid)378 while (proxy && proxy->idVrdp != devid) 379 379 { 380 380 proxy = proxy->pNext; … … 409 409 410 410 s = rdpusb_init_packet(14 + datalen, RDPUSB_REQ_REAP_URB); 411 out_uint32_le(s, proxy-> devid);411 out_uint32_le(s, proxy->idVrdp); 412 412 out_uint8(s, VRDP_USB_REAP_FLAG_LAST); 413 413 out_uint8(s, pUrb->enmStatus); … … 509 509 510 510 proxy->Dev.pszName = "Remote device"; 511 proxy-> devid= devid;511 proxy->idVrdp = devid; 512 512 513 513 for (pDevice = g_pUsbDevices; pDevice; pDevice = pDevice->pNext)
Note:
See TracChangeset
for help on using the changeset viewer.