diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2005-10-21 22:14:02 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2005-10-21 22:14:02 (GMT) |
| commit | 8ba4d9de41a3fd5a5843b558933a8bbab549a617 (patch) | |
| tree | 2abc47f13bcd0d7cba0f578241dfb232e676b2b2 | |
| parent | 30ab5c48e532f3ca8dc45798c40c9914730df783 (diff) | |
| download | tcl-8ba4d9de41a3fd5a5843b558933a8bbab549a617.zip tcl-8ba4d9de41a3fd5a5843b558933a8bbab549a617.tar.gz tcl-8ba4d9de41a3fd5a5843b558933a8bbab549a617.tar.bz2 | |
Bug 1334461
| -rwxr-xr-x | generic/tclStrToD.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 039fbed..6762480 100755 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStrToD.c,v 1.14 2005/10/21 20:52:16 kennykb Exp $ + * RCS: @(#) $Id: tclStrToD.c,v 1.15 2005/10/21 22:14:02 kennykb Exp $ * *---------------------------------------------------------------------- */ @@ -1315,6 +1315,7 @@ MakeLowPrecisionDouble( TclBNInitBignumFromWideUInt(&significandBig, significand); retval = MakeHighPrecisionDouble(0, &significandBig, numSigDigs, exponent); + mp_clear(&significandBig); /* * Come here to return the computed value. |
