From 2f1c37ce6b9c5d0473480ddd4872c288489a02dd Mon Sep 17 00:00:00 2001 From: raster Date: Tue, 4 Oct 2011 01:41:45 +0000 Subject: [PATCH] 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! git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@63785 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/cache/evas_cache_image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/cache/evas_cache_image.c b/src/lib/cache/evas_cache_image.c index 14dcb50..d52c64e 100644 --- a/src/lib/cache/evas_cache_image.c +++ b/src/lib/cache/evas_cache_image.c @@ -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'; -- 2.7.4