diff options
author | Krzysztof Wojcik <wojcikk2903@users.noreply.github.com> | 2019-05-14 16:55:23 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-05-14 16:55:23 (GMT) |
commit | c1f5667be1e3ec5871560c677402c1252c6018a6 (patch) | |
tree | 199ab3f8a68ef855b41a086ce280faff1ca817bf /Misc/NEWS.d | |
parent | 4d45a3b1107977baba9dce868e80d1d95bce4085 (diff) | |
download | cpython-c1f5667be1e3ec5871560c677402c1252c6018a6.zip cpython-c1f5667be1e3ec5871560c677402c1252c6018a6.tar.gz cpython-c1f5667be1e3ec5871560c677402c1252c6018a6.tar.bz2 |
bpo-33529, email: Fix infinite loop in email header encoding (GH-12020)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst b/Misc/NEWS.d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst new file mode 100644 index 0000000..84d16f5 --- /dev/null +++ b/Misc/NEWS.d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst @@ -0,0 +1,2 @@ +Prevent fold function used in email header encoding from entering infinite +loop when there are too many non-ASCII characters in a header. |