From 0b945d38d96420d588cf5a8d5fa0d781a1a831f6 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 9 Feb 2015 12:36:01 +0100 Subject: [PATCH] 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. --- legacy/elementary/src/bin/config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/elementary/src/bin/config.c b/legacy/elementary/src/bin/config.c index 8c94009281..85f1743a96 100644 --- a/legacy/elementary/src/bin/config.c +++ b/legacy/elementary/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)) {