diff options
author | Luca Barbieri <[email protected]> | 2010-08-23 00:16:23 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-08-23 00:16:59 +0200 |
commit | 8ffc3572281c24d1f97b3c119117918dca80f53e (patch) | |
tree | cd8bdf8285c0f73b4147e8e9238d0ed6d1abf0aa | |
parent | d507c0812d5a01d29f1f9f6942ec5cfd91ea0375 (diff) |
nvfx: fix minor memory leak
-rw-r--r-- | src/gallium/drivers/nvfx/nvfx_fragprog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_fragprog.c b/src/gallium/drivers/nvfx/nvfx_fragprog.c index 12b002a8198..a7e43b1513b 100644 --- a/src/gallium/drivers/nvfx/nvfx_fragprog.c +++ b/src/gallium/drivers/nvfx/nvfx_fragprog.c @@ -1518,7 +1518,7 @@ nvfx_fragprog_destroy(struct nvfx_context *nvfx, while(fpbo != fp->fpbo); } - for(i = 0; i < 8; ++i) + for(i = 0; i < Elements(fp->slot_relocations); ++i) util_dynarray_fini(&fp->slot_relocations[i]); if (fp->insn_len) |