jpeg pushed a commit to branch master.

http://git.enlightenment.org/tools/clouseau.git/commit/?id=79bfcef5853b2de77b217453c2633648f9fd8b38

commit 79bfcef5853b2de77b217453c2633648f9fd8b38
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Mon Jan 13 13:41:49 2014 +0900

    Fix crash in clouseau client
    
    Reproducible crash on NULL pointer when clicking, in the right panel,
    on an Evas_Image entry.
    
    This happened to me when inspecting E itself, in
    the Wallpaper Settings panel in particular.
---
 src/bin/clouseau_client.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/clouseau_client.c b/src/bin/clouseau_client.c
index 80e4817..a558bdc 100644
--- a/src/bin/clouseau_client.c
+++ b/src/bin/clouseau_client.c
@@ -1331,7 +1331,7 @@ _gl_selected(void *data, Evas_Object *pobj EINA_UNUSED, 
void *event_info)
                           ELM_GENLIST_ITEM_TREE : ELM_GENLIST_ITEM_NONE;
                        // We force the item to be a tree for the class layers
                        eo_it = elm_genlist_item_append(prop_list, 
&_class_info_itc, eo, NULL,
-                             iflag, _gl_selected, NULL);
+                             iflag, _gl_selected, data);
                        expand_list = eina_list_append(expand_list, eo_it);
                     }
                }

-- 


Reply via email to