* evas: Fix bug introduced in warning removal patch.

SVN revision: 44638
This commit is contained in:
Cedric BAIL 2009-12-21 18:26:36 +00:00
parent d8e1895350
commit 9dc9b03db9
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ evas_cserve_image_cache_contents_get(Evas_Cserve_Image_Cache *cache)
itt = (Op_Getinfo_Item *)p;
memcpy(&it, itt, sizeof(Op_Getinfo_Item));
file = (char*) p + sizeof(Op_Getinfo_Item);
file = (char*) (p + sizeof(Op_Getinfo_Item));
key = file + strlen(file) + 1;
im = calloc(1, sizeof(Evas_Cserve_Image));
if (!im) continue;