Check that the Textblock_Line exists first before trying to free or else segv

SVN revision: 19903
This commit is contained in:
Christopher Michael 2006-01-19 14:16:47 +00:00
parent 50d3d7649f
commit e70d9a0a03
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ _line_free(Evas_Object *obj, Evas_Object_Textblock_Line *ln)
if (fi->item) evas_stringshare_del(fi->item);
free(fi);
}
free(ln);
if (ln) free(ln);
}
static void