summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan de Groot <jan@jgc.homeip.net>2013-03-07 19:48:13 +0100
committerMarcin Slusarz <marcin.slusarz@gmail.com>2013-03-07 19:55:07 +0100
commit17f1cb1d99e66227d1e05925ef937643f5c1089a (patch)
tree2110fe29e16c88f30bb051d9d2a4c04f3d120054
parent057c46d791112a04f02f5fe8fb2956b021c583f3 (diff)
dri/nouveau: fix crash in nouveau_flush
https://bugs.freedesktop.org/show_bug.cgi?id=61947 Note: this is a candidate for the stable branches
-rw-r--r--src/mesa/drivers/dri/nouveau/nouveau_driver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_driver.c b/src/mesa/drivers/dri/nouveau/nouveau_driver.c
index f56b3b28074..6c119d564b9 100644
--- a/src/mesa/drivers/dri/nouveau/nouveau_driver.c
+++ b/src/mesa/drivers/dri/nouveau/nouveau_driver.c
@@ -69,7 +69,8 @@ nouveau_flush(struct gl_context *ctx)
__DRIdri2LoaderExtension *dri2 = screen->dri2.loader;
__DRIdrawable *drawable = nctx->dri_context->driDrawablePriv;
- dri2->flushFrontBuffer(drawable, drawable->loaderPrivate);
+ if (drawable && drawable->loaderPrivate)
+ dri2->flushFrontBuffer(drawable, drawable->loaderPrivate);
}
}