This commit is contained in:
espes 2015-06-12 11:27:45 +10:00
parent 50635c450a
commit 761a3b98e8
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}