nv50: valgrind complaint
authorBen Skeggs <skeggsb@gmail.com>
Thu, 12 Jun 2008 04:21:28 +0000 (14:21 +1000)
committerBen Skeggs <skeggsb@gmail.com>
Sun, 29 Jun 2008 05:46:17 +0000 (15:46 +1000)
src/gallium/drivers/nv50/nv50_program.c

index f71aa19..af5ca84 100644 (file)
@@ -146,8 +146,10 @@ static void
 free_temp(struct nv50_pc *pc, struct nv50_reg *r)
 {
        if (r->index == -1) {
-               FREE(pc->r_temp[r->hw]);
-               pc->r_temp[r->hw] = NULL;
+               unsigned hw = r->hw;
+
+               FREE(pc->r_temp[hw]);
+               pc->r_temp[hw] = NULL;
        }
 }