summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorMarta Gómez Macías <mgmacias@google.com>2023-03-05 11:00:41 (GMT)
committerGitHub <noreply@github.com>2023-03-05 11:00:41 (GMT)
commit66aa78cbe604a7c5731f074b869f92174a8e3b64 (patch)
tree497aee1993fce7be009427638f48da111a9ecdc4 /Misc/NEWS.d/next
parent5da379ca7dff44b321450800252be01041b3320b (diff)
downloadcpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.zip
cpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.tar.gz
cpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.tar.bz2
gh-102356: Add thrashcan macros to filter object dealloc (#102426)
Add thrashcan macros to the deallocator of the filter objects to protect against deeply nested destruction of chains of nested filters.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-03-04-20-56-12.gh-issue-102356.07KvUd.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-03-04-20-56-12.gh-issue-102356.07KvUd.rst b/Misc/NEWS.d/next/Core and Builtins/2023-03-04-20-56-12.gh-issue-102356.07KvUd.rst
new file mode 100644
index 0000000..c03fd52
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-03-04-20-56-12.gh-issue-102356.07KvUd.rst
@@ -0,0 +1,2 @@
+Fix a bug that caused a crash when deallocating deeply nested filter
+objects. Patch by Marta Gómez Macías.