draw: squash a couple of memory leaks
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 21 Apr 2008 20:01:38 +0000 (21:01 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 21 Apr 2008 20:01:38 +0000 (21:01 +0100)
src/gallium/auxiliary/draw/draw_pt_fetch.c
src/gallium/auxiliary/draw/draw_pt_fetch_emit.c

index c588710..f98bce6 100644 (file)
@@ -166,6 +166,9 @@ struct pt_fetch *draw_pt_fetch_create( struct draw_context *draw )
 
 void draw_pt_fetch_destroy( struct pt_fetch *fetch )
 {
+   if (fetch->translate)
+      fetch->translate->release( fetch->translate );
+
    FREE(fetch);
 }
 
index 7735173..68b2c5b 100644 (file)
@@ -264,6 +264,11 @@ static void fetch_emit_finish( struct draw_pt_middle_end *middle )
 
 static void fetch_emit_destroy( struct draw_pt_middle_end *middle )
 {
+   struct fetch_emit_middle_end *feme = (struct fetch_emit_middle_end *)middle;
+
+   if (feme->translate)
+      feme->translate->release( feme->translate );
+   
    FREE(middle);
 }