summaryrefslogtreecommitdiffstats
path: root/applypatch/applypatch.cpp
diff options
context:
space:
mode:
authorBernie Innocenti <codewiz@google.com>2019-03-29 05:14:37 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-03-29 05:14:37 +0100
commit5e028e80cf1aa98c66f9867460426db2a81b349f (patch)
tree385629afcd38f624cd8af6c2741aba0e9756b704 /applypatch/applypatch.cpp
parentMerge "Remove the extern declaration of `sehandle` from roots.cpp." am: 047582b506 (diff)
parentMerge "Fix bogus error checking on unique_fd" (diff)
downloadandroid_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar.gz
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar.bz2
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar.lz
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar.xz
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.tar.zst
android_bootable_recovery-5e028e80cf1aa98c66f9867460426db2a81b349f.zip
Diffstat (limited to 'applypatch/applypatch.cpp')
-rw-r--r--applypatch/applypatch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applypatch/applypatch.cpp b/applypatch/applypatch.cpp
index f9383ddeb..90d8e8604 100644
--- a/applypatch/applypatch.cpp
+++ b/applypatch/applypatch.cpp
@@ -76,7 +76,7 @@ static bool ReadPartitionToBuffer(const Partition& partition, FileContents* out,
}
android::base::unique_fd dev(open(partition.name.c_str(), O_RDONLY));
- if (!dev) {
+ if (dev == -1) {
PLOG(ERROR) << "Failed to open eMMC partition \"" << partition << "\"";
} else {
std::vector<unsigned char> buffer(partition.size);