Skip to content
This repository has been archived by the owner on Nov 29, 2020. It is now read-only.

Commit

Permalink
Fix apkdiff not checking entire files
Browse files Browse the repository at this point in the history
  • Loading branch information
janka102 committed Jan 7, 2020
1 parent 3173696 commit 7fb9f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apkdiff.py
Expand Up @@ -8,7 +8,7 @@ def compareFiles(first, second):
if firstBytes != secondBytes:
return False

if firstBytes != b"" or secondBytes != b"":
if firstBytes == b"":
break

return True
Expand Down

0 comments on commit 7fb9f0b

Please sign in to comment.