hey how about we stop breaking evas and edje with EVERY DAMN COMMIT???

SVN revision: 72162
This commit is contained in:
Mike Blumenkrantz 2012-06-15 06:36:49 +00:00
parent ee68f2795f
commit 4383a1f409
1 changed files with 6 additions and 7 deletions

View File

@ -171,16 +171,15 @@ _evas_map_free(Evas_Object *obj, Evas_Map *m)
if (m->surface)
obj->layer->evas->engine.func->image_map_surface_free
(obj->layer->evas->engine.data.output, m->surface);
if (obj->spans)
{
// FIXME: destroy engine side spans
free(obj->spans);
obj->spans = NULL;
}
}
m->magic = 0;
free(m);
if (obj->spans)
{
// FIXME: destroy engine side spans
free(obj->spans);
obj->spans = NULL;
}
}
/****************************************************************************/