summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-06-25 22:59:39 +0200
committerTianjie Xu <xunchang@google.com>2019-07-09 23:15:18 +0200
commite5218615084c3bb4f12c91d0ebed823927f1bc68 (patch)
tree780eb474a1efba66496c44047bbde193be381067 /install
parentMerge "minadbd: delete unnecessary fdevent.h include." (diff)
downloadandroid_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar.gz
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar.bz2
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar.lz
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar.xz
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.tar.zst
android_bootable_recovery-e5218615084c3bb4f12c91d0ebed823927f1bc68.zip
Diffstat (limited to 'install')
-rw-r--r--install/fuse_install.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/install/fuse_install.cpp b/install/fuse_install.cpp
index ffde4a348..8a7a278e0 100644
--- a/install/fuse_install.cpp
+++ b/install/fuse_install.cpp
@@ -128,11 +128,12 @@ static bool StartInstallPackageFuse(std::string_view path) {
constexpr auto FUSE_BLOCK_SIZE = 65536;
bool is_block_map = android::base::ConsumePrefix(&path, "@");
- auto file_data_reader =
+ auto fuse_data_provider =
is_block_map ? FuseBlockDataProvider::CreateFromBlockMap(std::string(path), FUSE_BLOCK_SIZE)
: FuseFileDataProvider::CreateFromFile(std::string(path), FUSE_BLOCK_SIZE);
- if (!file_data_reader->Valid()) {
+ if (!fuse_data_provider || !fuse_data_provider->Valid()) {
+ LOG(ERROR) << "Failed to create fuse data provider.";
return false;
}
@@ -142,7 +143,7 @@ static bool StartInstallPackageFuse(std::string_view path) {
umount2(SDCARD_ROOT, MNT_DETACH);
}
- return run_fuse_sideload(std::move(file_data_reader)) == 0;
+ return run_fuse_sideload(std::move(fuse_data_provider)) == 0;
}
InstallResult InstallWithFuseFromPath(std::string_view path, RecoveryUI* ui) {