diff options
author | Jan de Groot <jan@jgc.homeip.net> | 2013-03-07 19:48:13 +0100 |
---|---|---|
committer | Marcin Slusarz <marcin.slusarz@gmail.com> | 2013-03-07 19:55:07 +0100 |
commit | 17f1cb1d99e66227d1e05925ef937643f5c1089a (patch) | |
tree | 2110fe29e16c88f30bb051d9d2a4c04f3d120054 | |
parent | 057c46d791112a04f02f5fe8fb2956b021c583f3 (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.c | 3 |
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 f56b3b2807..6c119d564b 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); } } |