Simplify extension matching. Should fix a segfault.

SVN revision: 56678
This commit is contained in:
titan 2011-02-03 18:58:20 +00:00 committed by titan
parent 2599859876
commit 71086703b5
1 changed files with 8 additions and 10 deletions

View File

@ -93,17 +93,15 @@ _ephoto_thumb_populate_filter(void *data __UNUSED__, Eio_File *handler __UNUSED_
if (info->type == EINA_FILE_DIR) return EINA_FALSE; if (info->type == EINA_FILE_DIR) return EINA_FALSE;
if ((info->type != EINA_FILE_REG) && (info->type != EINA_FILE_UNKNOWN)) if ((info->type != EINA_FILE_REG) && (info->type != EINA_FILE_UNKNOWN))
return EINA_FALSE; return EINA_FALSE;
ext = info->path + info->path_length - 1; ext = strrchr(info->path, '.');
for (; ext > bname; ext--) if (*ext == '.') break; if (ext)
if (*ext == '.')
{ {
ext++; if ((strcasecmp(ext, ".jpeg") == 0) ||
if ((strcasecmp(ext, "jpeg") == 0) || (strcasecmp(ext, ".jpg") == 0) ||
(strcasecmp(ext, "jpg") == 0) || (strcasecmp(ext, ".png") == 0) ||
(strcasecmp(ext, "png") == 0) || (strcasecmp(ext, ".svg") == 0) ||
(strcasecmp(ext, "svg") == 0) || (strcasecmp(ext, ".gif") == 0))
(strcasecmp(ext, "gif") == 0)) return EINA_TRUE;
return EINA_TRUE;
} }
return EINA_FALSE; return EINA_FALSE;
} }