aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/proxy.py')
-rw-r--r--libmproxy/proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py
index c2a9b494..6196dc0e 100644
--- a/libmproxy/proxy.py
+++ b/libmproxy/proxy.py
@@ -320,7 +320,7 @@ class ProxyHandler(SocketServer.StreamRequestHandler):
headers.read(self.rfile)
if method == 'POST' and not headers.has_key('content-length'):
raise ProxyError(400, "Missing Content-Length for POST method")
- if headers.has_key("content-length"):
+ if headers.has_key("content-length") and int(headers["content-length"][0]):
content = self.rfile.read(int(headers["content-length"][0]))
else:
content = ""