Ephoto: Fix coverity issues: CIDS 151514 151512

This commit is contained in:
Stephen okra Houston 2016-11-28 12:03:35 -06:00
parent 621fb3be0b
commit 38c246b000
2 changed files with 3 additions and 6 deletions

View File

@ -1159,12 +1159,9 @@ ephoto_directory_browser_initialize_structure(Ephoto *ephoto)
dirs = eina_list_prepend(dirs, strdup(path));
dir = strdup(path);
while (strcmp(dir, ephoto->config->open))
{
if (dir)
{
free(dir);
dir = NULL;
}
dir = ecore_file_dir_get(path);
dirs = eina_list_prepend(dirs, strdup(dir));
memset(path, 0x00, sizeof(path));