diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-10-25 23:03:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-25 23:03:41 (GMT) |
commit | e68c67805e6a4c4ec80bea64be0e8373cc02d322 (patch) | |
tree | 129821827cbba9aea627cf226d9644b086cab3d0 /Misc | |
parent | d1a0a960ee493262fb95a0f5b795b5b6d75cecb8 (diff) | |
download | cpython-e68c67805e6a4c4ec80bea64be0e8373cc02d322.zip cpython-e68c67805e6a4c4ec80bea64be0e8373cc02d322.tar.gz cpython-e68c67805e6a4c4ec80bea64be0e8373cc02d322.tar.bz2 |
bpo-42150: Avoid buffer overflow in the new parser (GH-22978)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-10-25-21-14-18.bpo-42150.b70u_T.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-25-21-14-18.bpo-42150.b70u_T.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-25-21-14-18.bpo-42150.b70u_T.rst new file mode 100644 index 0000000..62fabb8 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-25-21-14-18.bpo-42150.b70u_T.rst @@ -0,0 +1,2 @@ +Fix possible buffer overflow in the new parser when checking for +continuation lines. Patch by Pablo Galindo. |