Fix mem leak in search function:

- When searching always free the clean_file if it exists, its just used at
   search time.


SVN revision: 20526
This commit is contained in:
stffrdhrn 2006-02-16 21:08:43 +00:00 committed by stffrdhrn
parent 7a4bc88869
commit c61ba650a9
1 changed files with 1 additions and 1 deletions

View File

@ -539,8 +539,8 @@ _e_intl_language_path_find(char *language)
{
directory = strdup(epd->dir);
}
free(clean_file);
}
E_FREE(clean_file);
}
}
ecore_list_destroy(files);