diff options
author | Brian <[email protected]> | 2007-02-26 17:05:52 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-26 17:05:52 -0700 |
commit | e21096b07c5854d01114b58f87d08709e370f8b7 (patch) | |
tree | 0e15a9afca6960a639bf4250c047b72b2ac30039 /src/mesa/vbo/vbo_context.c | |
parent | 928a70e4354d4884e2918ec67ddc6d8baf942c8a (diff) |
fix mem leak
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 65998e7ff75..f64f59d11ec 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -241,6 +241,7 @@ void _vbo_DestroyContext( GLcontext *ctx ) ctx->aelt_context = NULL; } + vbo_exec_destroy(ctx); FREE(vbo_context(ctx)); ctx->swtnl_im = NULL; } |