raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=610b766db258495e5bcf32343cc643c12708446d
commit 610b766db258495e5bcf32343cc643c12708446d Author: JunsuChoi <jsuya.c...@samsung.com> Date: Mon May 30 13:38:18 2016 +0900 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 ba43c20..38a0bdc 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; --