efl: Fix uninitialized variable

Signed-off-by: Mike McCormack <mikem@atratus.org>

SVN revision: 82245
This commit is contained in:
Mike McCormack 2013-01-05 00:06:23 +00:00 committed by Mike McCormack
parent 4a35861791
commit 53fda2cc48
1 changed files with 2 additions and 2 deletions

View File

@ -687,7 +687,7 @@ evas_image_load_file_head_gif(Image_Entry *ie, const char *file, const char *key
{ {
Evas_GIF_Info egi; Evas_GIF_Info egi;
GifRecordType rec; GifRecordType rec;
GifFileType *gif; GifFileType *gif = NULL;
Eina_File *f; Eina_File *f;
int w; int w;
int h; int h;
@ -839,7 +839,7 @@ evas_image_load_specific_frame(Image_Entry *ie, const char *file, int frame_inde
{ {
Evas_GIF_Info egi; Evas_GIF_Info egi;
Eina_File *f; Eina_File *f;
GifFileType *gif; GifFileType *gif = NULL;
Image_Entry_Frame *frame = NULL; Image_Entry_Frame *frame = NULL;
Gif_Frame *gif_frame = NULL; Gif_Frame *gif_frame = NULL;
Eina_Bool r = EINA_FALSE; Eina_Bool r = EINA_FALSE;