]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
drm/mgag200: fix null pointer dereference
authorDevendra Naga <devendra.aaru@gmail.com>
Sat, 7 Jul 2012 09:22:15 +0000 (09:22 +0000)
committerDave Airlie <airlied@redhat.com>
Fri, 20 Jul 2012 02:05:25 +0000 (22:05 -0400)
we are referencing the pointer after doing alloc_apertures,
as alloc_apertures kzallocs, the kzalloc may fail and we get a NULL.

so we need to check for NULL before we dereference this pointer

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/mgag200/mgag200_drv.c

index 93e832d6c3286346eff00f179fcc49e5caeba473..ea1024d79974a0f05b91c0e763ca6929266f5a72 100644 (file)
@@ -47,6 +47,9 @@ static void mgag200_kick_out_firmware_fb(struct pci_dev *pdev)
        bool primary = false;
 
        ap = alloc_apertures(1);
+       if (!ap)
+               return;
+
        ap->ranges[0].base = pci_resource_start(pdev, 0);
        ap->ranges[0].size = pci_resource_len(pdev, 0);