a segv is created by the deletion of sd->o_box, this FIXME exists in list.c too enna
authorMathieu Schroeter <mathieu.schroeter@mycable.ch>
Tue Sep 02 14:00:59 2008 +0200 (2 years ago)
branchenna
changeset 3030167dda2db9a
parent 302c87b6eb10867
child 3041951545e2e9a
a segv is created by the deletion of sd->o_box, this FIXME exists in list.c too
src/bin/location.c
       1 --- a/src/bin/location.c	Tue Sep 02 13:59:48 2008 +0200
       2 +++ b/src/bin/location.c	Tue Sep 02 14:00:59 2008 +0200
       3 @@ -281,7 +281,13 @@
       4     sd = evas_object_smart_data_get(obj);
       5     if (!sd)
       6       return;
       7 -   evas_object_del(sd->o_box);
       8 +
       9 +   /*
      10 +    * FIXME if sd->o_box is deleting
      11 +    * Segv in enna ?!!
      12 +    */
      13 +
      14 +   /*evas_object_del(sd->o_box);*/
      15     evas_object_del(sd->o_scroll);
      16     free(sd);
      17  }