summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2022-11-20 22:30:15 (GMT)
committerGitHub <noreply@github.com>2022-11-20 22:30:15 (GMT)
commitad47c7d926a9f842a31247f4a15b5bb9f1566749 (patch)
tree236bd290258b5a7f65201737daf4713edb95c7e4 /Misc/NEWS.d
parent88b101ff52010f795b34e3afc04c0e934d662d82 (diff)
downloadcpython-ad47c7d926a9f842a31247f4a15b5bb9f1566749.zip
cpython-ad47c7d926a9f842a31247f4a15b5bb9f1566749.tar.gz
cpython-ad47c7d926a9f842a31247f4a15b5bb9f1566749.tar.bz2
[3.10] gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill the available buffer (GH-99605). (#99630)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-11-19-22-27-52.gh-issue-99581.yKYPbf.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-11-19-22-27-52.gh-issue-99581.yKYPbf.rst b/Misc/NEWS.d/next/Core and Builtins/2022-11-19-22-27-52.gh-issue-99581.yKYPbf.rst
new file mode 100644
index 0000000..8071fd1
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-11-19-22-27-52.gh-issue-99581.yKYPbf.rst
@@ -0,0 +1,3 @@
+Fixed a bug that was causing a buffer overflow if the tokenizer copies a
+line missing the newline caracter from a file that is as long as the
+available tokenizer buffer. Patch by Pablo galindo