summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-07-13 11:18:04 -0700
committerGitHub <noreply@github.com>2020-07-13 14:18:04 -0400
commit6463cf07fef7a923a743fcaf312150c45fd81b64 (patch)
treee936a858969b46c60dedf8eb3b1381eaf4c2a677 /Misc/NEWS.d/next
parent[3.6] bpo-29778: Ensure python3.dll is loaded from correct locations when Pyt... (diff)
downloadcpython-6463cf07fef7a923a743fcaf312150c45fd81b64.tar.gz
cpython-6463cf07fef7a923a743fcaf312150c45fd81b64.tar.bz2
cpython-6463cf07fef7a923a743fcaf312150c45fd81b64.zip
bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458) (GH-21462)
Automerge-Triggered-By: @tiran (cherry picked from commit 4f309abf55f0e6f8950ac13d6ec83c22b8d47bf8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst b/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst
new file mode 100644
index 00000000000..3c3adbabf16
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst
@@ -0,0 +1,2 @@
+Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now
+UnpicklingError instead of crashing.