]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #7632: Fix a memory leak in _Py_dg_strtod.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 17 Jan 2010 13:37:57 +0000 (13:37 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 17 Jan 2010 13:37:57 +0000 (13:37 +0000)
Misc/NEWS
Python/dtoa.c

index 4806f2626cb7be62688d40fde348cca5b0b23f32..7ff642014c8d756726cd48a90d1afe4efecb0794 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,8 +25,9 @@ Core and Builtins
   alpha 2, including: (1) a serious 'wrong output' bug that could
   occur for long (> 40 digit) input strings, (2) a crash in dtoa.c
   that occurred in debug builds when parsing certain long numeric
-  strings corresponding to subnormal values, and (3) a number of flaws
-  that could lead to incorrectly rounded results.
+  strings corresponding to subnormal values, (3) a memory leak for
+  some values large enough to cause overflow, and (4) a number of
+  flaws that could lead to incorrectly rounded results.
 
 - Issue #7319, #7770: Silence DeprecationWarning by default when -3 is not
   used.
index 9eb8cdba895d356757bba0c67926302d842ca7e4..24ce9226079443c876d97f0954c08d6fe80cfd7c 100644 (file)
@@ -1939,8 +1939,14 @@ _Py_dg_strtod(const char *s00, char **se)
             dval(&rv) += adj.d;
             if ((word0(&rv) & Exp_mask) >=
                 Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
-                if (word0(&rv0) == Big0 && word1(&rv0) == Big1)
+                if (word0(&rv0) == Big0 && word1(&rv0) == Big1) {
+                    Bfree(bb);
+                    Bfree(bd);
+                    Bfree(bs);
+                    Bfree(bd0);
+                    Bfree(delta);
                     goto ovfl;
+                }
                 word0(&rv) = Big0;
                 word1(&rv) = Big1;
                 goto cont;