From 375a6d78cb476f865fe5cccbf3277af7afb4d719 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 21 Oct 2007 23:52:08 +0000 Subject: [PATCH] Fixed #3496 -- Handle the case of missing (and hence '0') Content-Length header in a POST to the wsgi handler. Based on a patch from Mikko Ohtamaa. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6592 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/wsgi.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py index a67c302102..d06eee73f2 100644 --- a/django/core/handlers/wsgi.py +++ b/django/core/handlers/wsgi.py @@ -165,7 +165,9 @@ class WSGIRequest(http.HttpRequest): content_length = int(self.environ.get('CONTENT_LENGTH', 0)) except ValueError: # if CONTENT_LENGTH was empty string or not an integer content_length = 0 - safe_copyfileobj(self.environ['wsgi.input'], buf, size=content_length) + if content_length > 0: + safe_copyfileobj(self.environ['wsgi.input'], buf, + size=content_length) self._raw_post_data = buf.getvalue() buf.close() return self._raw_post_data