From b54be9093ad05eaf0fdbe65d09632cc38625fd0f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 6 Aug 2012 09:34:27 +0000 Subject: [PATCH] another efm crash-- SVN revision: 74917 --- src/bin/e_fm.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 6c0703420..c13c60606 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -2573,9 +2573,12 @@ _e_fm2_file_force_update(const char *path) if (!dir) return; EINA_LIST_FOREACH(_e_fm2_list, l, o) { + const char *rp; if ((_e_fm2_list_walking > 0) && (eina_list_data_find(_e_fm2_list_remove, o))) continue; - if (!strcmp(e_fm2_real_path_get(o), dir)) + rp = e_fm2_real_path_get(o); + if (!rp) continue; + if (!strcmp(rp, dir)) { E_Fm2_Icon *ic;