From c652ba90718f84f3baede0eb8ae39685f55d9bbb Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 24 Jul 2012 11:36:31 +0000 Subject: [PATCH] Evas: Fix uninitialized variable warning. SVN revision: 74353 --- legacy/evas/src/bin/evas_cserve2_fonts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/bin/evas_cserve2_fonts.c b/legacy/evas/src/bin/evas_cserve2_fonts.c index be94708db0..759bec1f73 100644 --- a/legacy/evas/src/bin/evas_cserve2_fonts.c +++ b/legacy/evas/src/bin/evas_cserve2_fonts.c @@ -460,7 +460,7 @@ _font_slave_glyphs_load(const void *cmddata, void *data __UNUSED__) Slave_Msg_Font_Glyphs_Loaded *response; Font_Info *fi; unsigned int i; - unsigned int total_glyphs; + unsigned int total_glyphs = 0; #ifdef DEBUG_LOAD_TIME unsigned int gl_load_time = 0; unsigned int gl_render_time = 0;