diff options
author | Xiang Zhang <angwerzx@126.com> | 2018-01-31 12:48:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-31 12:48:05 (GMT) |
commit | 2c7fd46e11333ef5e5cce34212f7d087694f3658 (patch) | |
tree | 0497c3b1fa32112a475fe3b7da5390b59205f7fd /Misc | |
parent | 84521047e413d7d1150aaa1c333580b683b3f4b1 (diff) | |
download | cpython-2c7fd46e11333ef5e5cce34212f7d087694f3658.zip cpython-2c7fd46e11333ef5e5cce34212f7d087694f3658.tar.gz cpython-2c7fd46e11333ef5e5cce34212f7d087694f3658.tar.bz2 |
bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)
When using customized decode error handlers, it is possible for builtin decoders
to write out-of-bounds and then crash.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-01-26-21-20-21.bpo-32583.Fh3fau.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-26-21-20-21.bpo-32583.Fh3fau.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-26-21-20-21.bpo-32583.Fh3fau.rst new file mode 100644 index 0000000..45f1d04 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-26-21-20-21.bpo-32583.Fh3fau.rst @@ -0,0 +1,2 @@ +Fix possible crashing in builtin Unicode decoders caused by write +out-of-bound errors when using customized decode error handlers. |