diff options
author | Brian <[email protected]> | 2007-12-28 14:52:12 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-01-01 10:21:21 -0700 |
commit | 520a455f55f6c6c529dc6b725a5225793c0b4b01 (patch) | |
tree | cc8cdfa526fba52446d80c3f1c1cdeaa40c63d48 /src/mesa/vbo/vbo_context.c | |
parent | 678db26b9d2db0c76e7676b5499d8d55a5619a94 (diff) |
fix vbo display list memleak upon context destruction
Diffstat (limited to 'src/mesa/vbo/vbo_context.c')
-rw-r--r-- | src/mesa/vbo/vbo_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index 60d0b76ab62..235cee24298 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -246,6 +246,7 @@ void _vbo_DestroyContext( GLcontext *ctx ) } vbo_exec_destroy(ctx); + vbo_save_destroy(ctx); FREE(vbo_context(ctx)); ctx->swtnl_im = NULL; } |