diff options
author | Ilia Mirkin <[email protected]> | 2014-06-17 22:32:03 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-06-19 01:05:52 -0400 |
commit | c092c46b27c6f6a6674e8d67fb3afdb684811819 (patch) | |
tree | 5451149b9ab100c5a7e098de7d05f0251bc5c39a /src/gallium/drivers | |
parent | 5af80f62680b8321c3af565bb57138a71429502c (diff) |
nv30: avoid dangling references to deleted contexts
Signed-off-by: Ilia Mirkin <[email protected]>
Cc: "10.2" <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/nouveau/nv30/nv30_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv30/nv30_context.c b/src/gallium/drivers/nouveau/nv30/nv30_context.c index f325c5cfc68..617b0887810 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_context.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_context.c @@ -165,6 +165,9 @@ nv30_context_destroy(struct pipe_context *pipe) if (nv30->draw) draw_destroy(nv30->draw); + if (nv30->screen->base.pushbuf->user_priv == &nv30->bufctx) + nv30->screen->base.pushbuf->user_priv = NULL; + nouveau_bufctx_del(&nv30->bufctx); if (nv30->screen->cur_ctx == nv30) |