From 157224ffef3cfd72b17e508211fd5fd0734a0fb0 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler 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! SVN revision: 63785 --- legacy/evas/src/lib/cache/evas_cache_image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/cache/evas_cache_image.c b/legacy/evas/src/lib/cache/evas_cache_image.c index 14dcb50b97..d52c64e0f2 100644 --- a/legacy/evas/src/lib/cache/evas_cache_image.c +++ b/legacy/evas/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';