seoz pushed a commit to branch elementary-1.9. http://git.enlightenment.org/core/elementary.git/commit/?id=9e1a8f6f9852fd83192213bd8944c498d7802aaa
commit 9e1a8f6f9852fd83192213bd8944c498d7802aaa Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Mar 21 00:55:31 2014 +0900 index: Set variable to NULL after free. Then NULL check for this variable is not valid. This fixes coverity CID 1193250: Use after free (USE_AFTER_FREE). @fix --- src/lib/elm_index.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_index.c b/src/lib/elm_index.c index b3defd6..460cf16 100644 --- a/src/lib/elm_index.c +++ b/src/lib/elm_index.c @@ -658,6 +658,7 @@ _sel_eval(Evas_Object *obj, } } free(last); + last = NULL; if (it->letter) last = strdup(it->letter); } } --