mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#15546: Fix GzipFile.peek()'s handling of pathological input data.
This is a backport of changeset 8c07ff7f882f.
This commit is contained in:
parent
f186911e24
commit
fc6e8aabf5
2 changed files with 7 additions and 2 deletions
|
@ -367,8 +367,10 @@ class GzipFile(io.BufferedIOBase):
|
|||
if self.fileobj is None:
|
||||
return b''
|
||||
try:
|
||||
# 1024 is the same buffering heuristic used in read()
|
||||
self._read(max(n, 1024))
|
||||
# Ensure that we don't return b"" if we haven't reached EOF.
|
||||
while self.extrasize == 0:
|
||||
# 1024 is the same buffering heuristic used in read()
|
||||
self._read(max(n, 1024))
|
||||
except EOFError:
|
||||
pass
|
||||
offset = self.offset - self.extrastart
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue