summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorbtharper <btharper1221@gmail.com>2019-03-19 10:50:25 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-03-19 10:50:25 (GMT)
commite130a07eb20c4b655d182d5d10d778c7584efe55 (patch)
treedcb4ab4bc3258658b0ce9e7aa3cf46c7969a464b /Misc
parent5f1e8b4d249f62dfd81191bcadc4960d01e67ead (diff)
downloadcpython-e130a07eb20c4b655d182d5d10d778c7584efe55.zip
cpython-e130a07eb20c4b655d182d5d10d778c7584efe55.tar.gz
cpython-e130a07eb20c4b655d182d5d10d778c7584efe55.tar.bz2
bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425)
_PyPreConfig_Read() now free 'old_old' at exit.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst b/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst
new file mode 100644
index 0000000..d30f5d5
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst
@@ -0,0 +1 @@
+Fix leaks that led to build failure when configured with address sanitizer.