diff options
author | Keith Whitwell <[email protected]> | 2005-01-12 19:27:49 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-01-12 19:27:49 +0000 |
commit | 8e46534b3b776f1dd0f96fc6ba5244f16a2868ab (patch) | |
tree | e910b73799309966a900384b70250113a6e2d35a | |
parent | 118b82145ae94e082c60b7c377ab90266e0ff331 (diff) |
Remove bogus write to freed memory (valgrind).
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_context.c b/src/mesa/drivers/dri/unichrome/via_context.c index d4bf2724ca7..e48df63d0b9 100644 --- a/src/mesa/drivers/dri/unichrome/via_context.c +++ b/src/mesa/drivers/dri/unichrome/via_context.c @@ -573,7 +573,6 @@ viaDestroyContext(__DRIcontextPrivate *driContextPriv) FreeBuffer(vmesa); /* free the Mesa context */ _mesa_destroy_context(vmesa->glCtx); - vmesa->glCtx->DriverCtx = NULL; FREE(vmesa); } |