eina: make sure to cleanup the right string.

This commit is contained in:
Cedric BAIL 2015-10-23 12:32:02 -07:00
parent 8937fd4fc9
commit 58b194e0ad
1 changed files with 5 additions and 1 deletions

View File

@ -344,6 +344,7 @@ EAPI char *
eina_file_path_sanitize(const char *path)
{
Eina_Tmpstr *result = NULL;
char *r;
size_t len;
if (!path) return NULL;
@ -358,7 +359,10 @@ eina_file_path_sanitize(const char *path)
else
result = path;
return _eina_file_escape(eina_file_cleanup(result), len);
r = _eina_file_escape(strdup(result ? result : ""), len);
if (result != path) eina_tmpstr_del(result);
return r;
}
EAPI Eina_File *