dri: Fix potential null pointer deference in dri_put_drawable.
authorVinson Lee <vlee@vmware.com>
Tue, 24 Nov 2009 05:57:55 +0000 (00:57 -0500)
committerVinson Lee <vlee@vmware.com>
Tue, 24 Nov 2009 05:57:55 +0000 (00:57 -0500)
src/mesa/drivers/dri/common/dri_util.c

index e48e10d7c061f6e73ea70cbf4bcbe689e92e2ef9..439f66a7b882de1c996b1ea271c84e129788a6c0 100644 (file)
@@ -498,11 +498,11 @@ static void dri_put_drawable(__DRIdrawable *pdp)
 {
     __DRIscreenPrivate *psp;
 
-    pdp->refcount--;
-    if (pdp->refcount)
-       return;
-
     if (pdp) {
+       pdp->refcount--;
+       if (pdp->refcount)
+           return;
+
        psp = pdp->driScreenPriv;
         (*psp->DriverAPI.DestroyBuffer)(pdp);
        if (pdp->pClipRects) {