Fix the leak of the GList of layers in CoglMaterial

http://bugzilla.openedhand.com/show_bug.cgi?id=1624

Signed-off-by: Emmanuele Bassi <ebassi@linux.intel.com>
This commit is contained in:
Johan Bilien 2009-06-03 22:08:17 +01:00 committed by Emmanuele Bassi
parent fdb66d1076
commit 8a31263274

View File

@ -126,6 +126,7 @@ _cogl_material_free (CoglMaterial *material)
g_list_foreach (material->layers,
(GFunc)cogl_handle_unref, NULL);
g_list_free (material->layers);
g_free (material);
}