summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-12-09 00:54:50 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-09 00:54:50 +0100
commit9acf28a390aab3e0f394c701bc3cda6cbc9393b3 (patch)
tree7ce15fe95ff40d291ed60bb1653f1d106fbc8061
parentsimplify construction of the recovery progress bar (diff)
parentfix cut-and-paste error in verifier (diff)
downloadandroid_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar.gz
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar.bz2
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar.lz
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar.xz
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.tar.zst
android_bootable_recovery-9acf28a390aab3e0f394c701bc3cda6cbc9393b3.zip
-rw-r--r--verifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/verifier.c b/verifier.c
index f2491a14a..164fb4a01 100644
--- a/verifier.c
+++ b/verifier.c
@@ -123,7 +123,7 @@ int verify_file(const char* path, const RSAPublicKey *pKeys, unsigned int numKey
int i;
for (i = 4; i < eocd_size-3; ++i) {
if (eocd[i ] == 0x50 && eocd[i+1] == 0x4b &&
- eocd[i+2] == 0x05 && eocd[i+1] == 0x06) {
+ eocd[i+2] == 0x05 && eocd[i+3] == 0x06) {
// if the sequence $50 $4b $05 $06 appears anywhere after
// the real one, minzip will find the later (wrong) one,
// which could be exploitable. Fail verification if