From 79ec0e79754723b92e271976aeac207e8a47c0c0 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 25 Oct 2010 11:24:25 +0000 Subject: [PATCH] Evas font-engine: Silence gcc about a possible use of unitialized value which can't really happen. Add parenthesis where needed. SVN revision: 53855 --- legacy/evas/src/lib/engines/common/evas_font_query.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/evas/src/lib/engines/common/evas_font_query.c b/legacy/evas/src/lib/engines/common/evas_font_query.c index ce47269edd..5edd0e79d0 100644 --- a/legacy/evas/src/lib/engines/common/evas_font_query.c +++ b/legacy/evas/src/lib/engines/common/evas_font_query.c @@ -88,7 +88,7 @@ evas_common_font_query_size(RGBA_Font *fn, const Eina_Unicode *text, const Evas_ for (chr = 0, char_index = 0; *text; text++, char_index ++) { FT_UInt index; - RGBA_Font_Glyph *fg; + RGBA_Font_Glyph *fg = NULL; int chr_x, chr_y, advw; int gl, kern; @@ -117,7 +117,7 @@ evas_common_font_query_size(RGBA_Font *fn, const Eina_Unicode *text, const Evas_ * involved.*/ if (intl_props && evas_bidi_is_rtl_char(intl_props, char_index) && - fg->glyph->advance.x >> 16 > 0) + ((fg->glyph->advance.x >> 16) > 0)) { if (evas_common_font_query_kerning(fi, index, prev_index, &kern)) pen_x += kern; @@ -666,7 +666,7 @@ evas_common_font_query_last_up_to_pos(RGBA_Font *fn, const Eina_Unicode *in_text for (char_index = 0; *text; text++, char_index++) { FT_UInt index; - RGBA_Font_Glyph *fg; + RGBA_Font_Glyph *fg = NULL; int chr_x, chr_y, chr_w; int gl, kern; @@ -695,7 +695,7 @@ evas_common_font_query_last_up_to_pos(RGBA_Font *fn, const Eina_Unicode *in_text * involved.*/ if (intl_props && evas_bidi_is_rtl_char(intl_props, char_index) && - fg->glyph->advance.x >> 16 > 0) + ((fg->glyph->advance.x >> 16) > 0)) { if (evas_common_font_query_kerning(fi, index, prev_index, &kern))