Kaydet (Commit) 216eed57 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

[Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in…

[Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in order to avoid overflow or huge memory consumption.  Patch by Mark Eichin
üst 475661e6
......@@ -55,6 +55,7 @@ class GzipFile:
"""
myfileobj = None
max_read_chunk = 10 * 1024 * 1024
def __init__(self, filename=None, mode=None,
compresslevel=9, fileobj=None):
......@@ -215,14 +216,14 @@ class GzipFile:
try:
while True:
self._read(readsize)
readsize = readsize * 2
readsize = min(self.max_read_chunk, readsize * 2)
except EOFError:
size = self.extrasize
else: # just get some more of it
try:
while size > self.extrasize:
self._read(readsize)
readsize = readsize * 2
readsize = min(self.max_read_chunk, readsize * 2)
except EOFError:
if size > self.extrasize:
size = self.extrasize
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment