mirror of
https://git.proxmox.com/git/qemu
synced 2025-07-09 20:23:01 +00:00
usb-linux: Ensure devep != 0
So that we don't index endp_table with a negative index. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
61c1117f08
commit
130314f83d
@ -1029,6 +1029,11 @@ static int usb_linux_update_endp_table(USBHostDevice *s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
devep = descriptors[i + 2];
|
devep = descriptors[i + 2];
|
||||||
|
if ((devep & 0x0f) == 0) {
|
||||||
|
fprintf(stderr, "usb-linux: invalid ep descriptor, ep == 0\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
switch (descriptors[i + 3] & 0x3) {
|
switch (descriptors[i + 3] & 0x3) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
type = USBDEVFS_URB_TYPE_CONTROL;
|
type = USBDEVFS_URB_TYPE_CONTROL;
|
||||||
|
Loading…
Reference in New Issue
Block a user