From 7fb9f0b85621940e0a5ba977278f6f27fc323046 Mon Sep 17 00:00:00 2001 From: Jesse Smick Date: Mon, 6 Jan 2020 23:22:05 -0800 Subject: [PATCH] Fix apkdiff not checking entire files --- apkdiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apkdiff.py b/apkdiff.py index 6e26a9e65..ca12e169d 100644 --- a/apkdiff.py +++ b/apkdiff.py @@ -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