diff options
author | Guido van Rossum <guido@python.org> | 1998-02-27 14:40:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-02-27 14:40:38 (GMT) |
commit | 13452644d59a5c9d4d39d4418b94250d4e1e68c1 (patch) | |
tree | 9d2b19f01167def0f0dbe45518ef881a8f734cf4 /Lib | |
parent | 8fa5eb8784f977914a27ca91c4658282827def17 (diff) | |
download | cpython-13452644d59a5c9d4d39d4418b94250d4e1e68c1.zip cpython-13452644d59a5c9d4d39d4418b94250d4e1e68c1.tar.gz cpython-13452644d59a5c9d4d39d4418b94250d4e1e68c1.tar.bz2 |
Sjoerd writes: When a multipart message is incomplete, mimify crashes.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/mimify.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/mimify.py b/Lib/mimify.py index fb79db7..2ed3d6a 100755 --- a/Lib/mimify.py +++ b/Lib/mimify.py @@ -179,6 +179,9 @@ def unmimify_part(ifile, ofile, decode_base64 = 0): nifile = File(ifile, multipart) unmimify_part(nifile, ofile, decode_base64) line = nifile.peek + if not line: + # premature end of file + break continue # not a boundary between parts break @@ -390,6 +393,9 @@ def mimify_part(ifile, ofile, is_mime): nifile = File(ifile, multipart) mimify_part(nifile, ofile, 1) line = nifile.peek + if not line: + # premature end of file + break ofile.write(line) continue |