diff options
author | Keith Whitwell <[email protected]> | 2001-05-09 13:53:36 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-05-09 13:53:36 +0000 |
commit | bcf749e83a4844972b8fbb84e9762a9b1ec77c5f (patch) | |
tree | 095ccd846c8bc7b02f9363506f2e1f8e8f26ca8c /src/mesa/tnl/t_context.c | |
parent | 335634b807921285bec0709ee92c454cee87ee88 (diff) |
fix possible segfault on destroy context
Diffstat (limited to 'src/mesa/tnl/t_context.c')
-rw-r--r-- | src/mesa/tnl/t_context.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index bea2e376508..f52820840bf 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -1,4 +1,4 @@ -/* $Id: t_context.c,v 1.16 2001/03/19 02:25:36 keithw Exp $ */ +/* $Id: t_context.c,v 1.17 2001/05/09 13:53:36 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -132,10 +132,8 @@ _tnl_DestroyContext( GLcontext *ctx ) { TNLcontext *tnl = TNL_CONTEXT(ctx); -/* _tnl_dlist_destroy( ctx ); */ _tnl_array_destroy( ctx ); _tnl_imm_destroy( ctx ); -/* _tnl_eval_destroy( ctx ); */ _tnl_destroy_pipeline( ctx ); FREE(tnl); |