aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/mgag200
diff options
context:
space:
mode:
authorDevendra Naga <devendra.aaru@gmail.com>2012-07-07 05:22:15 -0400
committerDave Airlie <airlied@redhat.com>2012-07-19 22:05:25 -0400
commit4dbdf0aea9585add9359e7ca5535256f866ec85c (patch)
tree145d64cae53ae09aa5e74c3774f89cfd3e4a1f25 /drivers/gpu/drm/mgag200
parentf60ec4c7df043df81e62891ac45383d012afe0da (diff)
drm/mgag200: fix null pointer dereference
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>
Diffstat (limited to 'drivers/gpu/drm/mgag200')
-rw-r--r--drivers/gpu/drm/mgag200/mgag200_drv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/mgag200/mgag200_drv.c b/drivers/gpu/drm/mgag200/mgag200_drv.c
index 93e832d6c328..ea1024d79974 100644
--- a/drivers/gpu/drm/mgag200/mgag200_drv.c
+++ b/drivers/gpu/drm/mgag200/mgag200_drv.c
@@ -47,6 +47,9 @@ static void mgag200_kick_out_firmware_fb(struct pci_dev *pdev)
47 bool primary = false; 47 bool primary = false;
48 48
49 ap = alloc_apertures(1); 49 ap = alloc_apertures(1);
50 if (!ap)
51 return;
52
50 ap->ranges[0].base = pci_resource_start(pdev, 0); 53 ap->ranges[0].base = pci_resource_start(pdev, 0);
51 ap->ranges[0].size = pci_resource_len(pdev, 0); 54 ap->ranges[0].size = pci_resource_len(pdev, 0);
52 55