Module: Mesa Branch: master Commit: 68c7994ab5d86cdbfcba75b7f6c3ad734b9fb6b0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=68c7994ab5d86cdbfcba75b7f6c3ad734b9fb6b0
Author: Krzysztof Smiechowicz <[email protected]> Date: Mon Oct 4 11:43:29 2010 -0700 nvfx: Pair os_malloc_aligned() with os_free_aligned(). >From AROS. --- 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 23fdb08..13e8bee 100644 --- a/src/gallium/drivers/nvfx/nvfx_fragprog.c +++ b/src/gallium/drivers/nvfx/nvfx_fragprog.c @@ -1558,7 +1558,7 @@ nvfx_fragprog_destroy(struct nvfx_context *nvfx, struct nvfx_fragment_program_bo* next = fpbo->next; nouveau_bo_unmap(fpbo->bo); nouveau_bo_ref(0, &fpbo->bo); - free(fpbo); + os_free_aligned(fpbo); fpbo = next; } while(fpbo != fp->fpbo); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
