mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
V4L/DVB: dvb-usb: gp8psk, fix potential null derefernce
Stanse found that in gp8psk_load_bcm4500fw there is missing a check for return value of kmalloc. Add one and bail out appropriatelly. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
0de8e3533e
commit
205161ed03
@ -105,6 +105,10 @@ static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d)
|
||||
|
||||
ptr = fw->data;
|
||||
buf = kmalloc(64, GFP_KERNEL | GFP_DMA);
|
||||
if (!buf) {
|
||||
ret = -ENOMEM;
|
||||
goto out_rel_fw;
|
||||
}
|
||||
|
||||
while (ptr[0] != 0xff) {
|
||||
u16 buflen = ptr[0] + 4;
|
||||
|
Loading…
Reference in New Issue
Block a user