summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorcolorfulappl <colorfulappl@qq.com>2022-12-20 10:20:42 (GMT)
committerGitHub <noreply@github.com>2022-12-20 10:20:42 (GMT)
commit53063b7ffa8f8edf13dd7c81f89f034a3b3b71b6 (patch)
tree797882fdee0f73461e5c339ca86773d9c5028f4e /Misc/NEWS.d
parentb81d1c3be360c5f9a9dff0761e7f1f70a200f0aa (diff)
downloadcpython-53063b7ffa8f8edf13dd7c81f89f034a3b3b71b6.zip
cpython-53063b7ffa8f8edf13dd7c81f89f034a3b3b71b6.tar.gz
cpython-53063b7ffa8f8edf13dd7c81f89f034a3b3b71b6.tar.bz2
[3.10] gh-99240: Fix double-free bug in Argument Clinic str_converter generated code (GH-99241) (#100353)
(cherry picked from commit 8dbe08eb7c807f484fe9870f5b7f5ae2881fd966) Fix double-free bug mentioned at GH-99240, by moving memory clean up out of "exit" label.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2022-11-08-15-54-43.gh-issue-99240.MhYwcz.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-11-08-15-54-43.gh-issue-99240.MhYwcz.rst b/Misc/NEWS.d/next/Library/2022-11-08-15-54-43.gh-issue-99240.MhYwcz.rst
new file mode 100644
index 0000000..0a4db05
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-11-08-15-54-43.gh-issue-99240.MhYwcz.rst
@@ -0,0 +1,2 @@
+Fix double-free bug in Argument Clinic ``str_converter`` by
+extracting memory clean up to a new ``post_parsing`` section.