hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=9d2e70f631e55aff55f12c1c834543e851d9a9a0

commit 9d2e70f631e55aff55f12c1c834543e851d9a9a0
Author: ChunEon Park <[email protected]>
Date:   Tue Feb 4 22:23:14 2014 +0900

    panes - fixed memory double free crash.
    
    caused by this commit. 29e4aa94c685f1f0e4cb7489be0f967489adc26d
---
 src/bin/panes.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/bin/panes.c b/src/bin/panes.c
index 1892a3d..a8bd16d 100644
--- a/src/bin/panes.c
+++ b/src/bin/panes.c
@@ -145,14 +145,6 @@ right_clicked_cb(void *data, Evas_Object *obj, void 
*event_info EINA_UNUSED)
    elm_image_file_set(right_arrow_img, EDJE_PATH, "panes_recover_arrow");
 }
 
-static void
-panes_del_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
-             void *event_info EINA_UNUSED)
-{
-   panes_data *pd = data;
-   free(pd);
-}
-
 void
 panes_full_view_right(Evas_Object *panes)
 {
@@ -198,7 +190,6 @@ panes_init(Evas_Object *parent)
                                   press_cb, NULL);
    evas_object_smart_callback_add(panes, "unpress",
                                   unpress_cb, NULL);
-   evas_object_event_callback_add(panes, EVAS_CALLBACK_DEL, panes_del_cb, pd);
    evas_object_show(panes);
 
    //Hotkey Button

-- 


Reply via email to