From 4907a1f07e6eea5adbe15e27ed202b143c856784 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 22 Feb 2009 09:19:11 +0000 Subject: [PATCH] fix premul default value for tiff loader SVN revision: 39134 --- legacy/evas/src/modules/loaders/tiff/evas_image_load_tiff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/modules/loaders/tiff/evas_image_load_tiff.c b/legacy/evas/src/modules/loaders/tiff/evas_image_load_tiff.c index e5d9aaa3b8..e8f5924327 100644 --- a/legacy/evas/src/modules/loaders/tiff/evas_image_load_tiff.c +++ b/legacy/evas/src/modules/loaders/tiff/evas_image_load_tiff.c @@ -79,7 +79,7 @@ raster(TIFFRGBAImage_Extra * img, uint32 * rast, uint32 *pixel, pixel_value; int i, j, dy, rast_offset; DATA32 *buffer_pixel, *buffer = evas_cache_image_pixels(img->image); - int alpha_premult; + int alpha_premult = 0; image_width = img->image->w; image_height = img->image->h;