nv50: fix memory leak on nv50_pc free

This commit is contained in:
Marcin Slusarz
2010-01-12 17:38:52 +01:00
committed by Christoph Bumiller
parent 26c78a4968
commit c83093973e
+2
View File
@@ -3622,6 +3622,8 @@ free_nv50_pc(struct nv50_pc *pc)
FREE(pc->attr);
if (pc->temp)
FREE(pc->temp);
if (pc->insn_pos)
FREE(pc->insn_pos);
FREE(pc);
}