diff options
author | Abhilash Raj <maxking@users.noreply.github.com> | 2019-07-17 16:48:52 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2019-07-17 16:48:52 (GMT) |
commit | 719a062bcb7b08a56e6576dcd75f4244e6053209 (patch) | |
tree | f0a504456d20cbda6b1cc888e158e50652e7cde4 /Lib/email/_header_value_parser.py | |
parent | a4a994bd3e619cbaff97610a1cee8ffa87c672f5 (diff) | |
download | cpython-719a062bcb7b08a56e6576dcd75f4244e6053209.zip cpython-719a062bcb7b08a56e6576dcd75f4244e6053209.tar.gz cpython-719a062bcb7b08a56e6576dcd75f4244e6053209.tar.bz2 |
Fix IndexError when parsing unexpectedly ending quoted-string. (GH-14813)
This exception was caused because the input ended unexpectedly with only one
single quote instead of a pair with some value inside it.
Diffstat (limited to 'Lib/email/_header_value_parser.py')
-rw-r--r-- | Lib/email/_header_value_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/_header_value_parser.py b/Lib/email/_header_value_parser.py index 66b042e..daff57b 100644 --- a/Lib/email/_header_value_parser.py +++ b/Lib/email/_header_value_parser.py @@ -1191,7 +1191,7 @@ def get_bare_quoted_string(value): "expected '\"' but found '{}'".format(value)) bare_quoted_string = BareQuotedString() value = value[1:] - if value[0] == '"': + if value and value[0] == '"': token, value = get_qcontent(value) bare_quoted_string.append(token) while value and value[0] != '"': |