From: Tony Cook Date: Fri, 1 Mar 2013 12:07:06 +0000 (+1100) Subject: missing variable initialization for glyph_names for FT2 X-Git-Tag: v0.94_01~2 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/d7faa98fc1cdfa5222a6b508eaea20cb70366968 missing variable initialization for glyph_names for FT2 --- diff --git a/FT2/FT2.xs b/FT2/FT2.xs index c4f2c3b6..5ecdcd05 100644 --- a/FT2/FT2.xs +++ b/FT2/FT2.xs @@ -281,7 +281,7 @@ i_ft2_glyph_name(handle, text_sv, utf8 = 0, reliable_only = 1) STRLEN work_len; size_t len; char name[255]; - SSize_t count; + SSize_t count = 0; PPCODE: i_clear_error(); text = SvPV(text_sv, work_len);