V4L/DVB (9604): ttusb_dec: fix memory leak
Free allocated memory 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
b7ed785b5f
commit
7935eeae79
@@ -1260,6 +1260,7 @@ static int ttusb_dec_init_usb(struct ttusb_dec *dec)
|
|||||||
dec->irq_buffer = usb_buffer_alloc(dec->udev,IRQ_PACKET_SIZE,
|
dec->irq_buffer = usb_buffer_alloc(dec->udev,IRQ_PACKET_SIZE,
|
||||||
GFP_ATOMIC, &dec->irq_dma_handle);
|
GFP_ATOMIC, &dec->irq_dma_handle);
|
||||||
if(!dec->irq_buffer) {
|
if(!dec->irq_buffer) {
|
||||||
|
usb_free_urb(dec->irq_urb);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
usb_fill_int_urb(dec->irq_urb, dec->udev,dec->irq_pipe,
|
usb_fill_int_urb(dec->irq_urb, dec->udev,dec->irq_pipe,
|
||||||
|
Reference in New Issue
Block a user