diff --git a/lib/http/__init__.py b/lib/http/__init__.py index 6f0d95cedcccab840ff848492f749f5f648621cb..533be813bdce83c6f3dfdd72d33e076aeed715be 100644 --- a/lib/http/__init__.py +++ b/lib/http/__init__.py @@ -403,9 +403,9 @@ def SocketOperation(sock, op, arg1, timeout): if event is None: raise HttpSocketTimeout() - if (op == SOCKOP_RECV and - event & (select.POLLNVAL | select.POLLHUP | select.POLLERR)): - return "" + if event & (select.POLLNVAL | select.POLLHUP | select.POLLERR): + # Let the socket functions handle these + break if not event & wait_for_event: continue @@ -862,7 +862,7 @@ class HttpMessageReader(object): # the CRLF." if idx == 0: # TODO: Limit number of CRLFs/empty lines for safety? - buf = buf[:2] + buf = buf[2:] continue if idx > 0: