mmc: ushc: fix NULL-deref at probe
commit181302dc72
upstream. Make sure to check the number of endpoints to avoid dereferencing a NULL-pointer should a malicious device lack endpoints. Fixes:53f3a9e26e
("mmc: USB SD Host Controller (USHC) driver") Cc: David Vrabel <david.vrabel@csr.com> Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2c251e568e
commit
dcf879cb9e
@ -426,6 +426,9 @@ static int ushc_probe(struct usb_interface *intf, const struct usb_device_id *id
|
|||||||
struct ushc_data *ushc;
|
struct ushc_data *ushc;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
if (intf->cur_altsetting->desc.bNumEndpoints < 1)
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
mmc = mmc_alloc_host(sizeof(struct ushc_data), &intf->dev);
|
mmc = mmc_alloc_host(sizeof(struct ushc_data), &intf->dev);
|
||||||
if (mmc == NULL)
|
if (mmc == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
Reference in New Issue
Block a user