diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2012-07-16 17:04:29 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2012-07-16 17:04:29 +0000 |
commit | 473f7fc2dc1cba782abaf6af536acb7a7799336e (patch) | |
tree | 7b159a58f19888eb0484be875996578820a05261 /lang/python25/files/patch-CVE-2012-0845 | |
parent | - Update to 0.24 (diff) |
- remove expired ports
* lang/python24 and lang/python25: unmaintained upstream
* www/zope and www/zope211: unmaintained upstream (the only
consumers of python24)
- clean-up python versions < 2.6 from lang/python-doc-html
- clean-up python24/25 from Mk/bsd.ports.mk
- add www/zope213 glue to bsd.python.mk
- clean-up zope versions != 2.13 from bsd.python.mk
Submitted by: miwi (based on)
Approved by: portmgr (miwi)
Notes
Notes:
svn path=/head/; revision=300956
Diffstat (limited to 'lang/python25/files/patch-CVE-2012-0845')
-rw-r--r-- | lang/python25/files/patch-CVE-2012-0845 | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/python25/files/patch-CVE-2012-0845 b/lang/python25/files/patch-CVE-2012-0845 deleted file mode 100644 index a205a7de0ea5..000000000000 --- a/lang/python25/files/patch-CVE-2012-0845 +++ /dev/null @@ -1,14 +0,0 @@ ---- Lib/SimpleXMLRPCServer.py.orig 2011-06-11 19:46:23.000000000 +0400 -+++ Lib/SimpleXMLRPCServer.py 2012-02-15 12:50:23.000000000 +0400 -@@ -486,7 +486,10 @@ - L = [] - while size_remaining: - chunk_size = min(size_remaining, max_chunk_size) -- L.append(self.rfile.read(chunk_size)) -+ chunk = self.rfile.read(chunk_size) -+ if not chunk: -+ break -+ L.append(chunk) - size_remaining -= len(L[-1]) - data = ''.join(L) - |