diff options
author | Marta Gómez Macías <mgmacias@google.com> | 2023-03-05 12:00:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 12:00:41 +0100 |
commit | 66aa78cbe604a7c5731f074b869f92174a8e3b64 (patch) | |
tree | 497aee1993fce7be009427638f48da111a9ecdc4 /Misc | |
parent | Move around example in to_bytes() to avoid confusion (#101595) (diff) | |
download | cpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.tar.gz cpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.tar.bz2 cpython-66aa78cbe604a7c5731f074b869f92174a8e3b64.zip |
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')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-03-04-20-56-12.gh-issue-102356.07KvUd.rst | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS index c591cd3bfe4..7bbde3af997 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -637,6 +637,7 @@ Tim Golden Yonatan Goldschmidt Mark Gollahon Mikhail Golubev +Marta Gómez Macías Guilherme Gonçalves Tiago Gonçalves Chris Gonnerman 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 00000000000..c03fd5266bc --- /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. |