Evas: Fix uninitialized variable warning.
authorChristopher Michael <cpmichael1@comcast.net>
Tue, 24 Jul 2012 11:36:31 +0000 (11:36 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Tue, 24 Jul 2012 11:36:31 +0000 (11:36 +0000)
SVN revision: 74353

legacy/evas/src/bin/evas_cserve2_fonts.c

index be94708..759bec1 100644 (file)
@@ -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;