diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-05-10 18:54:10 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-05-10 18:54:10 (GMT) |
commit | 5d9a90aa1eb03973daff1aee8fa4eadd7a37b45b (patch) | |
tree | e076b1457473c433aadfe4debc4f612d1c32cbfa /generic | |
parent | 76e3b5eed61a674bce7f9c1e18380842dcff3fbf (diff) | |
download | tcl-5d9a90aa1eb03973daff1aee8fa4eadd7a37b45b.zip tcl-5d9a90aa1eb03973daff1aee8fa4eadd7a37b45b.tar.gz tcl-5d9a90aa1eb03973daff1aee8fa4eadd7a37b45b.tar.bz2 |
Fixed uninitialized memory read in tclBinary.c when passing a NaN to 'd','q','Q' formats
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBinary.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c index 706d1f0..fa75841 100644 --- a/generic/tclBinary.c +++ b/generic/tclBinary.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: tclBinary.c,v 1.22 2005/05/10 18:34:07 kennykb Exp $ + * RCS: @(#) $Id: tclBinary.c,v 1.23 2005/05/10 18:54:31 kennykb Exp $ */ #include "tclInt.h" @@ -1632,6 +1632,7 @@ FormatNumber(interp, type, src, cursorPtr) if ( src->typePtr != &tclDoubleType ) { return TCL_ERROR; } + dvalue = src->internalRep.doubleValue; } /* |