From b4f97a7f350f27a3a1a02ac0eed00fb59177953c Mon Sep 17 00:00:00 2001 From: tasn 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. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@53855 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/engines/common/evas_font_query.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/engines/common/evas_font_query.c b/src/lib/engines/common/evas_font_query.c index ce47269..5edd0e7 100644 --- a/src/lib/engines/common/evas_font_query.c +++ b/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)) -- 2.7.4