Mesa (master): llvmpipe: Always use memory allocation macros.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Sep 25 11:19:13 UTC 2011


Module: Mesa
Branch: master
Commit: 6921d4cd57927da779b4ff773ba85cfb67c7f7f1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6921d4cd57927da779b4ff773ba85cfb67c7f7f1

Author: José Fonseca <jose.r.fonseca at gmail.com>
Date:   Sun Sep 25 11:48:00 2011 +0100

llvmpipe: Always use memory allocation macros.

---

 src/gallium/drivers/llvmpipe/lp_tile_image.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_tile_image.c b/src/gallium/drivers/llvmpipe/lp_tile_image.c
index 0938f7a..4d53cde 100644
--- a/src/gallium/drivers/llvmpipe/lp_tile_image.c
+++ b/src/gallium/drivers/llvmpipe/lp_tile_image.c
@@ -33,6 +33,7 @@
 
 
 #include "util/u_format.h"
+#include "util/u_memory.h"
 #include "lp_tile_soa.h"
 #include "lp_tile_image.h"
 
@@ -313,7 +314,7 @@ test_tiled_linear_conversion(void *data,
    unsigned wt = (width + TILE_SIZE - 1) / TILE_SIZE;
    unsigned ht = (height + TILE_SIZE - 1) / TILE_SIZE;
 
-   uint8_t *tiled = malloc(wt * ht * TILE_SIZE * TILE_SIZE * 4);
+   uint8_t *tiled = MALLOC(wt * ht * TILE_SIZE * TILE_SIZE * 4);
 
    /*unsigned tiled_stride = wt * TILE_SIZE * TILE_SIZE * 4;*/
 
@@ -323,6 +324,6 @@ test_tiled_linear_conversion(void *data,
    lp_tiled_to_linear(tiled, data, 0, 0, width, height, format,
                       stride, wt);
 
-   free(tiled);
+   FREE(tiled);
 }
 




More information about the mesa-commit mailing list