diff options
author | Kevin B Kenny <kennykb@acm.org> | 2010-12-01 16:28:21 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2010-12-01 16:28:21 (GMT) |
commit | 3010ca024256f6a0d6b27bf72d3e5b7259e90650 (patch) | |
tree | 1665ec11233cde8c883092e30aef8015f40dbe29 /ChangeLog | |
parent | 94ead3bc1f6658967c1ea17f52b7d885f1534ca9 (diff) | |
download | tcl-3010ca024256f6a0d6b27bf72d3e5b7259e90650.zip tcl-3010ca024256f6a0d6b27bf72d3e5b7259e90650.tar.gz tcl-3010ca024256f6a0d6b27bf72d3e5b7259e90650.tar.bz2 |
* generic/tclStrToD.c (SetPrecisionLimits, TclDoubleDigits):
Added meaningless initialization of 'i', 'ilim' and 'ilim1'
to silence warnings from the C compiler about possible use of
uninitialized variables, Added a panic to the 'switch' that
assigns them, to assert that the 'default' case is impossible.
[Bug 3124675]
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,12 @@ +2010-12-01 Kevin B. Kenny <kennykb@acm.org> + + * generic/tclStrToD.c (SetPrecisionLimits, TclDoubleDigits): + Added meaningless initialization of 'i', 'ilim' and 'ilim1' + to silence warnings from the C compiler about possible use of + uninitialized variables, Added a panic to the 'switch' that + assigns them, to assert that the 'default' case is impossible. + [Bug 3124675] + 2010-11-30 Andreas Kupries <andreask@activestate.com> * generic/tclInt.decls: Backport of Kevin B. Kenny's work on |