diff options
author | das <das> | 2008-12-07 16:34:12 (GMT) |
---|---|---|
committer | das <das> | 2008-12-07 16:34:12 (GMT) |
commit | dad5f8c673f46f8a689841cdc0568fff52c5ef87 (patch) | |
tree | bc363e25b63d1114e0d291507eb02c7876149aa9 /generic/tkFont.c | |
parent | 59bd7a0159445f73e970d56b2751c7b9a1924eca (diff) | |
download | tk-dad5f8c673f46f8a689841cdc0568fff52c5ef87.zip tk-dad5f8c673f46f8a689841cdc0568fff52c5ef87.tar.gz tk-dad5f8c673f46f8a689841cdc0568fff52c5ef87.tar.bz2 |
Fix potential use of uninitialized variable flagged by clang static analyzer
Diffstat (limited to 'generic/tkFont.c')
-rw-r--r-- | generic/tkFont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkFont.c b/generic/tkFont.c index 961feac..0b67f56 100644 --- a/generic/tkFont.c +++ b/generic/tkFont.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFont.c,v 1.50 2008/11/22 20:05:32 patthoyts Exp $ + * RCS: @(#) $Id: tkFont.c,v 1.51 2008/12/07 16:34:12 das Exp $ */ #include "tkInt.h" @@ -2675,7 +2675,7 @@ Tk_CharBbox( { TextLayout *layoutPtr; LayoutChunk *chunkPtr; - int i, x, w; + int i, x = 0, w; Tk_Font tkfont; TkFont *fontPtr; const char *end; |