Skip to content

Commit

Permalink
Fixed #3496 -- Handle the case of missing (and hence '0') Content-Len…
Browse files Browse the repository at this point in the history
…gth 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
  • Loading branch information
malcolmt committed Oct 21, 2007
1 parent 0ffeb3a commit 375a6d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion django/core/handlers/wsgi.py
Expand Up @@ -165,7 +165,9 @@ def _get_raw_post_data(self):
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
Expand Down

0 comments on commit 375a6d7

Please sign in to comment.