i965/gen4: Fix memory leak each time compile_gs_prog() is called.
authorEric Anholt <eric@anholt.net>
Fri, 16 Nov 2012 17:56:03 +0000 (09:56 -0800)
committerEric Anholt <eric@anholt.net>
Mon, 26 Nov 2012 02:25:26 +0000 (18:25 -0800)
Commit 774fb90db3e83d5e7326b7a72e05ce805c306b24 introduced a ralloc context to
each user of struct brw_compile, but for this one a NULL context was used,
causing the later ralloc_free(mem_ctx) to not do anything.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=55175
NOTE: This is a candidate for the stable branches.

src/mesa/drivers/dri/i965/brw_gs.c

index 52742d0cb72d33d7b27fdfed4d5d207eac432383..9ba53ec51b0dd8bd77951a0b70ec33cba9d919e2 100644 (file)
@@ -59,7 +59,7 @@ static void compile_gs_prog( struct brw_context *brw,
    c.vue_map = brw->vs.prog_data->vue_map;
    c.nr_regs = (c.vue_map.num_slots + 1)/2;
 
-   mem_ctx = NULL;
+   mem_ctx = ralloc_context(NULL);
    
    /* Begin the compilation:
     */