From 610b766db258495e5bcf32343cc643c12708446d Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Mon, 30 May 2016 13:38:18 +0900 Subject: [PATCH] eet_image.c : Fix build warning Summary: initialized two variable for uninitialized build warning Test Plan: N/A Reviewers: woohyun, raster Reviewed By: raster Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D3990 --- src/lib/eet/eet_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eet/eet_image.c b/src/lib/eet/eet_image.c index ba43c20622..38a0bdcc2d 100644 --- a/src/lib/eet/eet_image.c +++ b/src/lib/eet/eet_image.c @@ -2163,7 +2163,7 @@ eet_data_image_decode_to_cspace_surface_cipher(const void *data, int *quality, Eet_Image_Encoding *lossy) { - unsigned int iw, ih; + unsigned int iw = 0, ih = 0; int ialpha, icompress, iquality; Eet_Image_Encoding ilossy; const Eet_Colorspace *cspaces = NULL;