From: cnook <kimcinoo@gmail.com>

Subject: [E-devel] [Patch][elm_win] elm_win_title_set(); can make a
crash with NULL

Have ever try to call elm_win_title_set(win, NULL)? Then try... :-] It
makes "Segmentation Fault".
Yeah, we can add patch in the Ecore side, but we can prevent the
segmentation fault before go inside.
Please check the patch and give any feedbacks. Thanks a lot.



SVN revision: 68154
This commit is contained in:
cnook 2012-02-20 11:48:31 +00:00 committed by Carsten Haitzler
parent 655ada11d0
commit df26dee932
1 changed files with 1 additions and 1 deletions

View File

@ -1908,7 +1908,7 @@ elm_win_title_set(Evas_Object *obj, const char *title)
Elm_Win *win;
ELM_CHECK_WIDTYPE(obj, widtype);
win = elm_widget_data_get(obj);
if (!win) return;
if (!win || !title) return;
ecore_evas_title_set(win->ee, title);
if (win->frame_obj)
edje_object_part_text_set(win->frame_obj, "elm.text.title", title);