Scan failure still means we finished scan.

Bug: 19993667
Change-Id: If6a79391e34b652b2ba4e6df40a8e712f7a2e172
gugelfrei
Jeff Sharkey 9 years ago
parent c98d1f5883
commit ba6747f119

@ -260,6 +260,7 @@ status_t Disk::readPartitions() {
status_t res = ForkExecvp(cmd, output); status_t res = ForkExecvp(cmd, output);
if (res != OK) { if (res != OK) {
LOG(WARNING) << "sgdisk failed to scan " << mDevPath; LOG(WARNING) << "sgdisk failed to scan " << mDevPath;
notifyEvent(ResponseCode::DiskScanned);
mJustPartitioned = false; mJustPartitioned = false;
return res; return res;
} }
@ -322,7 +323,6 @@ status_t Disk::readPartitions() {
#endif #endif
notifyEvent(ResponseCode::DiskScanned); notifyEvent(ResponseCode::DiskScanned);
mJustPartitioned = false; mJustPartitioned = false;
return OK; return OK;
} }

Loading…
Cancel
Save