From: Brian Date: Tue, 27 Feb 2007 00:05:52 +0000 (-0700) Subject: fix mem leak X-Git-Tag: 062012170305~19858 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e21096b07c5854d01114b58f87d08709e370f8b7;p=profile%2Fivi%2Fmesa.git fix mem leak --- diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index 65998e7..f64f59d 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; }