V4L/DVB (9602): dvb-ttusb-budget: Add NULL pointer validation
Added validation for NULL pointer Signed-off-by: Douglas Schilling Landgraf <dougsland@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
d7c31a1e75
commit
11eb260a70
@@ -808,6 +808,12 @@ static int ttusb_alloc_iso_urbs(struct ttusb *ttusb)
|
|||||||
ISO_BUF_COUNT,
|
ISO_BUF_COUNT,
|
||||||
&ttusb->iso_dma_handle);
|
&ttusb->iso_dma_handle);
|
||||||
|
|
||||||
|
if (!ttusb->iso_buffer) {
|
||||||
|
dprintk("%s: pci_alloc_consistent - not enough memory\n",
|
||||||
|
__func__);
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
memset(ttusb->iso_buffer, 0,
|
memset(ttusb->iso_buffer, 0,
|
||||||
ISO_FRAME_SIZE * FRAMES_PER_ISO_BUF * ISO_BUF_COUNT);
|
ISO_FRAME_SIZE * FRAMES_PER_ISO_BUF * ISO_BUF_COUNT);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user