Merge "fastboot: Check if super_empty.img exists before reading it."

This commit is contained in:
David Anderson 2018-12-05 19:35:56 +00:00 committed by Gerrit Code Review
commit dbbbb17c1d
1 changed files with 1 additions and 1 deletions

View File

@ -1541,7 +1541,7 @@ static bool should_flash_in_userspace(const std::string& partition_name) {
return false;
}
auto path = find_item_given_name("super_empty.img");
if (path.empty()) {
if (path.empty() || access(path.c_str(), R_OK)) {
return false;
}
auto metadata = android::fs_mgr::ReadFromImageFile(path);