Elementary widget: Fixed NULL checking in elm_widget_show_region_set
authorTom Hacohen <tom@stosb.com>
Thu, 17 Mar 2011 12:10:02 +0000 (12:10 +0000)
committerTom Hacohen <tom@stosb.com>
Thu, 17 Mar 2011 12:10:02 +0000 (12:10 +0000)
Patch by WooHyun Jung.

SVN revision: 57823

src/lib/elm_widget.c

index 2e6271b314797a4e5ef3056912229ee18f816df9..6d766bbbafcc6136d17546d942ebd3c9ba4a822f 100644 (file)
@@ -1674,10 +1674,10 @@ elm_widget_show_region_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Co
    do
      {
         parent_obj = sd->parent_obj;
-        child_obj = sd->obj;
+        if ((!parent_obj) || (!_elm_widget_is(parent_obj))) break;
         sd = evas_object_smart_data_get(parent_obj);
-
-        if ((!parent_obj) || (!sd) || (!_elm_widget_is(parent_obj))) break;
+        if (!sd) break;
+        child_obj = sd->obj;
 
         evas_object_geometry_get(parent_obj, &px, &py, NULL, NULL);
         evas_object_geometry_get(child_obj, &cx, &cy, NULL, NULL);