Mesa (master): noop: 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: 785b9e7c780d8e436ef557a22cf916f7869f7390
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=785b9e7c780d8e436ef557a22cf916f7869f7390

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

noop: Always use memory allocation macros.

---

 src/gallium/drivers/noop/noop_pipe.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/noop/noop_pipe.c b/src/gallium/drivers/noop/noop_pipe.c
index ead97df..baa4255 100644
--- a/src/gallium/drivers/noop/noop_pipe.c
+++ b/src/gallium/drivers/noop/noop_pipe.c
@@ -101,7 +101,7 @@ static struct pipe_resource *noop_resource_create(struct pipe_screen *screen,
 	nresource->base = *templ;
 	nresource->base.screen = screen;
 	nresource->size = stride * templ->height0 * templ->depth0;
-	nresource->data = malloc(nresource->size);
+	nresource->data = MALLOC(nresource->size);
 	pipe_reference_init(&nresource->base.reference, 1);
 	if (nresource->data == NULL) {
 		FREE(nresource);
@@ -137,7 +137,7 @@ static void noop_resource_destroy(struct pipe_screen *screen,
 {
 	struct noop_resource *nresource = (struct noop_resource *)resource;
 
-	free(nresource->data);
+	FREE(nresource->data);
 	FREE(resource);
 }
 




More information about the mesa-commit mailing list