OSDN Git Service

xlib: check for null ctx pointer in glXIsDirect()
authorBrian Paul <brianp@vmware.com>
Mon, 20 May 2013 22:15:24 +0000 (16:15 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 21 May 2013 13:35:12 +0000 (07:35 -0600)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=64745
Note: This is a candidate for the stable branches.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/drivers/x11/fakeglx.c

index daed4f4..c7fb327 100644 (file)
@@ -1551,7 +1551,7 @@ Fake_glXIsDirect( Display *dpy, GLXContext ctx )
 {
    struct fake_glx_context *glxCtx = (struct fake_glx_context *) ctx;
    (void) dpy;
-   return glxCtx->xmesaContext->direct;
+   return glxCtx ? glxCtx->xmesaContext->direct : False;
 }