From: Ben Skeggs Date: Thu, 12 Jun 2008 04:21:28 +0000 (+1000) Subject: nv50: valgrind complaint X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=619549a6377a58d54c9cf55f8863beed56b09566;p=mesa.git nv50: valgrind complaint --- diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index f71aa19312f..af5ca84c8e7 100644 --- a/src/gallium/drivers/nv50/nv50_program.c +++ b/src/gallium/drivers/nv50/nv50_program.c @@ -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; } }