Don't free this here, it gets freed at shutdown with the cache.

SVN revision: 25807
This commit is contained in:
David Walter Seikel 2006-09-13 03:57:09 +00:00
parent 60c2e94a4c
commit f0ceec2fd3
1 changed files with 0 additions and 6 deletions

View File

@ -310,7 +310,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
{
if (match) /* If there is a match in sizes, return the icon. */
{
ecore_hash_destroy(theme);
ecore_list_destroy(directory_paths);
free(theme_path);
return found;
@ -334,7 +333,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
/* Fall back strategy #1, look for closest size in this theme. */
if (closest)
{
ecore_hash_destroy(theme);
ecore_list_destroy(directory_paths);
free(theme_path);
return closest;
@ -349,7 +347,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
inherits);
if (found != NULL)
{
ecore_hash_destroy(theme);
ecore_list_destroy(directory_paths);
free(theme_path);
return found;
@ -365,7 +362,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
"hicolor");
if (found != NULL)
{
ecore_hash_destroy(theme);
ecore_list_destroy(directory_paths);
free(theme_path);
return found;
@ -385,7 +381,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
NULL);
if (found)
{
ecore_hash_destroy(theme);
ecore_list_destroy(directory_paths);
free(theme_path);
return found;
@ -395,7 +390,6 @@ _ecore_desktop_icon_find0(const char *icon, const char *icon_size, const char *i
}
}
}
ecore_hash_destroy(theme);
}
free(theme_path);
}