From a408ea96920984ad2c5bf81f799cbb583f264105 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 3 Apr 2013 13:33:38 -0600 Subject: [PATCH] gallium/hud: replace malloc w/ MALLOC MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit To match the FREE() called used later. Fixes things on Windows. Reviewed-by: Marek Olšák --- src/gallium/auxiliary/hud/hud_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index 5511f8e..b417f5d 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -621,7 +621,7 @@ hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr) } assert(pane->num_graphs < Elements(colors)); - gr->vertices = malloc(pane->max_num_vertices * sizeof(float) * 2); + gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2); gr->color[0] = colors[pane->num_graphs][0]; gr->color[1] = colors[pane->num_graphs][1]; gr->color[2] = colors[pane->num_graphs][2]; -- 2.7.4