diff options
author | costypetrisor <costypetrisor@users.noreply.github.com> | 2018-07-31 20:55:14 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-07-31 20:55:14 (GMT) |
commit | 8ed317f1ca42a43df14282bbc3ccc0b5610432f4 (patch) | |
tree | 608abbe452767ddbd65946d45665082c2af4e773 /Misc | |
parent | 944451cd8d3e897138f4b43569de13cd081ee251 (diff) | |
download | cpython-8ed317f1ca42a43df14282bbc3ccc0b5610432f4.zip cpython-8ed317f1ca42a43df14282bbc3ccc0b5610432f4.tar.gz cpython-8ed317f1ca42a43df14282bbc3ccc0b5610432f4.tar.bz2 |
bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)
Fix a crash on negative STACKADJ() when Low-Level trace (LLTRACE) is enabled.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-07-28-10-34-00.bpo-34113.eZ5FWV.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-07-28-10-34-00.bpo-34113.eZ5FWV.rst b/Misc/NEWS.d/next/Core and Builtins/2018-07-28-10-34-00.bpo-34113.eZ5FWV.rst new file mode 100644 index 0000000..f4c80f9 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-07-28-10-34-00.bpo-34113.eZ5FWV.rst @@ -0,0 +1,2 @@ +Fixed crash on debug builds when opcode stack was adjusted with negative +numbers. Patch by Constantin Petrisor. |