projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2e289c
)
Decrement the context's refcounts on part-used storage structs on
author
Keith Whitwell
<keith@tungstengraphics.com>
Tue, 9 Aug 2005 16:11:28 +0000
(16:11 +0000)
committer
Keith Whitwell
<keith@tungstengraphics.com>
Tue, 9 Aug 2005 16:11:28 +0000
(16:11 +0000)
context destroy. Fixes memory leak.
src/mesa/tnl/t_save_api.c
patch
|
blob
|
history
diff --git
a/src/mesa/tnl/t_save_api.c
b/src/mesa/tnl/t_save_api.c
index b3637cf8d9b17bd9e93c139b48869e0e50102d83..b43b048083f7d1b9fe3db42f479ea1f16481dc91 100644
(file)
--- a/
src/mesa/tnl/t_save_api.c
+++ b/
src/mesa/tnl/t_save_api.c
@@
-1708,5
+1708,15
@@
void _tnl_save_init( GLcontext *ctx )
*/
void _tnl_save_destroy( GLcontext *ctx )
{
- (void) ctx;
+ TNLcontext *tnl = TNL_CONTEXT(ctx);
+
+ /* Decrement the refcounts. References may still be held by
+ * display lists yet to be destroyed, so it may not yet be time to
+ * free these items.
+ */
+ if ( --tnl->save.prim_store->refcount == 0 )
+ FREE( tnl->save.prim_store );
+
+ if ( --tnl->save.vertex_store->refcount == 0 )
+ FREE( tnl->save.vertex_store );
}