jiyoun bug! you didnt fix the hkey string properly.. you set the last

2 chars to o? where ? is "undefined". you set the same string char to
/ then o. fix!



SVN revision: 63785
This commit is contained in:
Carsten Haitzler 2011-10-04 01:41:45 +00:00
parent 9f403ea9eb
commit 157224ffef
1 changed files with 2 additions and 1 deletions

View File

@ -747,8 +747,9 @@ evas_cache_image_request(Evas_Cache_Image *cache, const char *file,
if (lo->orientation)
{
hkey[size] = '/';
size += 1;
hkey[size] = 'o';
size += 2;
size += 1;
}
}
hkey[size] = '\0';