summaryrefslogtreecommitdiff
path: root/lang/python25/files/patch-CVE-2012-0845
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python25/files/patch-CVE-2012-0845')
-rw-r--r--lang/python25/files/patch-CVE-2012-084514
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)
-