jiyoun bug! you didnt fix the hkey string properly.. you set the last
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 4 Oct 2011 01:41:45 +0000 (01:41 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 4 Oct 2011 01:41:45 +0000 (01:41 +0000)
2 chars to o? where ? is "undefined". you set the same string char to
/ then o. fix!

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@63785 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/cache/evas_cache_image.c

index 14dcb50..d52c64e 100644 (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';