]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix infinite loop in email folding logic (GH-12732)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 16 Jul 2019 18:15:40 +0000 (11:15 -0700)
committerGitHub <noreply@github.com>
Tue, 16 Jul 2019 18:15:40 +0000 (11:15 -0700)
commite7bec26937ce602ca21cc1f78a391adcf5eafdf1
tree9a30b95c56a412265c8c5fcdacd3f49faebafb74
parent134f79682d6729e3cf84b665d615f576075550e8
Fix infinite loop in email folding logic (GH-12732)

As far as I can tell, this infinite loop would be triggered if:

1. The value being folded contains a single word (no spaces) longer than
   max_line_length
2. The max_line_length is shorter than the encoding's name + 9
   characters.

bpo-36564: https://bugs.python.org/issue36564
(cherry picked from commit f69d5c61981ea97d251db515c7ff280fcc17182d)

Co-authored-by: Paul Ganssle <pganssle@users.noreply.github.com>
Lib/email/_header_value_parser.py
Lib/email/parser.py
Lib/test/test_email/test_policy.py
Misc/NEWS.d/next/Library/2019-04-08-13-00-13.bpo-36564._n67m_.rst [new file with mode: 0644]