Commit b9d031f3 authored by Oliver Neukum's avatar Oliver Neukum Committed by Greg Kroah-Hartman

cdc-acm: fix uninitialized variable

commit 7309aa84 upstream.

variable struct usb_cdc_parsed_header h may be used
uninitialized in acm_probe.

In kernel 4.8.

    /* handle quirks deadly to normal probing*/
    if (quirks == NO_UNION_NORMAL)

        ...

        goto skip_normal_probe;
    }

we bypass call to

    cdc_parse_cdc_header(&h, intf, buffer, buflen);

but later use h in

    if (h.usb_cdc_country_functional_desc) { /* export the country data */
Signed-off-by: default avatarOliver Neukum <oneukum@suse.com>
Reported-by: default avatarVictor Sologoubov <victor0@rambler.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c480880c
...@@ -1173,6 +1173,8 @@ static int acm_probe(struct usb_interface *intf, ...@@ -1173,6 +1173,8 @@ static int acm_probe(struct usb_interface *intf,
if (quirks == IGNORE_DEVICE) if (quirks == IGNORE_DEVICE)
return -ENODEV; return -ENODEV;
memset(&h, 0x00, sizeof(struct usb_cdc_parsed_header));
num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR; num_rx_buf = (quirks == SINGLE_RX_URB) ? 1 : ACM_NR;
/* handle quirks deadly to normal probing*/ /* handle quirks deadly to normal probing*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment