Update TWRP to AOSP 7.1.2

Change-Id: I19c1546efb4182aac62c690e3cc05b04e3a9a32e
This commit is contained in:
Ethan Yonker
2017-05-10 16:11:35 -05:00
51 changed files with 489 additions and 491 deletions
+6
View File
@@ -154,6 +154,12 @@ int verify_file(unsigned char* addr, size_t length) {
LOGI("comment is %zu bytes; signature %zu bytes from end\n",
comment_size, signature_start);
if (signature_start > comment_size) {
LOGE("signature start: %zu is larger than comment size: %zu\n", signature_start,
comment_size);
return VERIFY_FAILURE;
}
if (signature_start <= FOOTER_SIZE) {
LOGE("Signature start is in the footer");
return VERIFY_FAILURE;