summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2018-01-31 13:34:17 (GMT)
committerGitHub <noreply@github.com>2018-01-31 13:34:17 (GMT)
commitea94fce6960d90fffeeda131e31024617912d231 (patch)
tree6ddaec1c139817e5f8d643038536ec8751ff75ac /Misc
parenteb126eddbd7542ac9d7cd2736116aee2e0bd03dd (diff)
downloadcpython-ea94fce6960d90fffeeda131e31024617912d231.zip
cpython-ea94fce6960d90fffeeda131e31024617912d231.tar.gz
cpython-ea94fce6960d90fffeeda131e31024617912d231.tar.bz2
[3.6] bpo-32583: Fix possible crashing in builtin Unicode decoders (GH-5325) (#5459)
When using customized decode error handlers, it is possible for builtin decoders to write out-of-bounds and then crash.. (cherry picked from commit 2c7fd46e11333ef5e5cce34212f7d087694f3658)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-01-26-21-20-21.bpo-32583.Fh3fau.rst2
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.