diff options
author | Tianjie Xu <xunchang@google.com> | 2016-09-01 19:55:08 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-09-01 19:55:08 +0200 |
commit | 0ae9d800825e30670d0db8038d41af46103c8220 (patch) | |
tree | 7f25f42263857f91cb7cd00275a7e38f4c7ae8b1 /applypatch | |
parent | Merge "minadbd: rename adb_server_main to minadbd_main." am: 818394869d (diff) | |
parent | Merge "Check an edge case when read(2) returns 0" (diff) | |
download | android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar.gz android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar.bz2 android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar.lz android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar.xz android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.tar.zst android_bootable_recovery-0ae9d800825e30670d0db8038d41af46103c8220.zip |
Diffstat (limited to '')
-rw-r--r-- | applypatch/applypatch.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applypatch/applypatch.cpp b/applypatch/applypatch.cpp index 02a3c6e41..e52ef99dc 100644 --- a/applypatch/applypatch.cpp +++ b/applypatch/applypatch.cpp @@ -336,6 +336,9 @@ int WriteToPartition(const unsigned char* data, size_t len, const char* target) printf("verify read error %s at %zu: %s\n", partition, p, strerror(errno)); return -1; + } else if (read_count == 0) { + printf("verify read reached unexpected EOF, %s at %zu\n", partition, p); + return -1; } if (static_cast<size_t>(read_count) < to_read) { printf("short verify read %s at %zu: %zd %zu %s\n", |