V4L/DVB: dvb: return -ENOMEM if kzalloc failed in dvb_usb_device_init()
If in a cold state and the download succeeded ret is zero, but we should return -ENOMEM. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
ca39d84d43
commit
407df29363
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ int dvb_usb_device_init(struct usb_interface *intf,
|
||||||
d = kzalloc(sizeof(struct dvb_usb_device),GFP_KERNEL);
|
d = kzalloc(sizeof(struct dvb_usb_device),GFP_KERNEL);
|
||||||
if (d == NULL) {
|
if (d == NULL) {
|
||||||
err("no memory for 'struct dvb_usb_device'");
|
err("no memory for 'struct dvb_usb_device'");
|
||||||
return ret;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
d->udev = udev;
|
d->udev = udev;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue