From: Stefan Schmidt Date: Mon, 9 Feb 2015 11:36:01 +0000 (+0100) Subject: elm_config: Avoid access of deleted item data. X-Git-Tag: v1.13.0~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12eb6995eea4930d2698f4b06b99d4914bce0159;p=platform%2Fupstream%2Felementary.git 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. --- 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)) {