another efm crash--

SVN revision: 74917
This commit is contained in:
Mike Blumenkrantz 2012-08-06 09:34:27 +00:00
parent 160c91873b
commit b54be9093a
1 changed files with 4 additions and 1 deletions

View File

@ -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;