Eina tmpstr: remove usage of tmpstr_strlen().

This commit is contained in:
Tom Hacohen 2015-02-09 14:02:40 +00:00
parent fb8dfe98cd
commit 8fbee3fac0
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ eina_file_path_sanitize(const char *path)
if (eina_file_path_relative(path))
{
result = eina_file_current_directory_get(path, len);
len = eina_tmpstr_strlen(result) - 1; /* tmpstr lengths include '/0' */
len = eina_tmpstr_len(result);
}
else
result = path;