V4L/DVB (13015): kmalloc failure ignored in m920x_firmware_download()
authorRoel Kluin <roel.kluin@gmail.com>
Fri, 18 Sep 2009 23:09:52 +0000 (20:09 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 19 Sep 2009 03:53:10 +0000 (00:53 -0300)
Prevent NULL dereference if kmalloc() fails.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/dvb-usb/m920x.c

index aec7a1943b668c9d9152878d48850dbd56e00b7c..ef9b7bed13ffe84538b3e47f27d1e07bf8ff26bd 100644 (file)
@@ -337,6 +337,8 @@ static int m920x_firmware_download(struct usb_device *udev, const struct firmwar
        int i, pass, ret = 0;
 
        buff = kmalloc(65536, GFP_KERNEL);
+       if (buff == NULL)
+               return -ENOMEM;
 
        if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
                goto done;