Fix bug #1543303, tarfile adds padding that breaks gunzip.

Patch # 1543897.

Will backport to 2.5
This commit is contained in:
Neal Norwitz 2006-08-21 17:59:46 +00:00
parent 271d59343b
commit 8a519392d5
2 changed files with 21 additions and 3 deletions

View file

@ -411,9 +411,6 @@ class _Stream:
self.buf += self.cmp.flush()
if self.mode == "w" and self.buf:
blocks, remainder = divmod(len(self.buf), self.bufsize)
if remainder > 0:
self.buf += NUL * (self.bufsize - remainder)
self.fileobj.write(self.buf)
self.buf = ""
if self.comptype == "gz":