stefan pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=12eb6995eea4930d2698f4b06b99d4914bce0159

commit 12eb6995eea4930d2698f4b06b99d4914bce0159
Author: Stefan Schmidt <s.schm...@samsung.com>
Date:   Mon Feb 9 12:36:01 2015 +0100

    elm_config: Avoid access of deleted item data.
    
    This belongs to the fixes raster just did here. It was the only one I was 
able
    to trigger after his fixes.
    
    Last one in a row that fixes T2072.
---
 src/bin/config.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/config.c b/src/bin/config.c
index 8c94009..85f1743 100644
--- a/src/bin/config.c
+++ b/src/bin/config.c
@@ -2025,6 +2025,7 @@ _font_classes_list_sel(void *data   EINA_UNUSED,
         const char *s;
 
         s = elm_object_item_text_get(list_it);
+        if (!s) continue;
 
         if (tc_data->font && !strcmp(s, tc_data->font))
           {

-- 


Reply via email to