diff options
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 4656f25a701..2784fa82bd8 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.189 2002/11/19 15:25:00 brianp Exp $ */ +/* $Id: context.c,v 1.190 2002/12/12 13:03:15 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -746,6 +746,8 @@ free_shared_state( GLcontext *ctx, struct gl_shared_state *ss ) _mesa_DeleteHashTable(ss->VertexPrograms); #endif + _glthread_DESTROY_MUTEX(ss->Mutex); + FREE(ss); } |