mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
Plug minor memory leak in cogl_vertex_buffer_submit_real
Free a temporary list.
This commit is contained in:
parent
67014764c9
commit
c60a974ec0
@ -1438,6 +1438,7 @@ cogl_vertex_buffer_submit_real (CoglVertexBuffer *buffer)
|
||||
for (tmp = buffer->submitted_vbos; tmp != NULL; tmp = tmp->next)
|
||||
cogl_vertex_buffer_vbo_free (tmp->data, TRUE);
|
||||
g_list_free (buffer->submitted_vbos);
|
||||
g_list_free (new_vbos);
|
||||
|
||||
buffer->submitted_vbos = final_vbos;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user