Fixed sum crash when file size is a mult of 16384

Crash happened when file is mult of 16384, which means last block size is zero and it crashed because of data[-1]
This commit is contained in:
ExtReMLapin 2020-05-10 22:01:42 +02:00 committed by GitHub
parent 1648b00426
commit e893ad24ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,8 @@ class ChkSum:
with open(filename, "rb") as f:
while True:
block = f.read(blocksize)
self.add(block)
if len(block) != 0:
self.add(block)
if print_progress:
print(".", end="", flush=True)
if len(block) < blocksize: