From 761a3b98e8d4721d93695450fba5a15350dc037e Mon Sep 17 00:00:00 2001 From: espes Date: Fri, 12 Jun 2015 11:27:45 +1000 Subject: [PATCH] btw --- hw/xbox/nv2a.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index bc2f47e261..9d1f29e2d4 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -1308,7 +1308,7 @@ static void pgraph_bind_converted_vertex_attributes(NV2AState *d, * attribute->converted_count; if (num_elements > attribute->converted_elements) { - attribute->converted_buffer = realloc( + attribute->converted_buffer = g_realloc( attribute->converted_buffer, num_elements * stride); } @@ -2676,7 +2676,7 @@ static void pgraph_method(NV2AState *d, vertex_attribute->converted_elements = 0; } else { if (vertex_attribute->converted_buffer) { - free(vertex_attribute->converted_buffer); + g_free(vertex_attribute->converted_buffer); vertex_attribute->converted_buffer = NULL; } }