Patch #1966: Break infinite loop in httplib when the servers

implements the chunked encoding incorrectly.
This commit is contained in:
Martin v. Löwis 2008-02-12 18:48:23 +00:00
parent cab74c8398
commit e9c996c14d
2 changed files with 7 additions and 0 deletions

View file

@ -571,6 +571,10 @@ class HTTPResponse:
### note: we shouldn't have any trailers!
while True:
line = self.fp.readline()
if not line:
# a vanishingly small number of sites EOF without
# sending the trailer
break
if line == '\r\n':
break