Fix T48806: mesh.materials.clear() does not decrement users counts.

This commit is contained in:
2015-11-19 18:03:38 +01:00
parent 70cf77e1ce
commit c8bf45c323

View File

@@ -669,6 +669,10 @@ void BKE_material_clear_id(struct ID *id, bool update_data)
Material ***matar;
if ((matar = give_matarar_id(id))) {
short *totcol = give_totcolp_id(id);
while ((*totcol)--) {
id_us_min((ID *)((*matar)[*totcol]));
}
*totcol = 0;
if (*matar) {
MEM_freeN(*matar);