summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-05-18 09:28:12 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-18 09:28:12 +0200
commitfcda99c4f77304a281568d07f130f31d6203de94 (patch)
tree3476e7c2bc57650abe33470821239e47f9114e41
parentrelease-request-655284b0-7f0b-48b5-b01d-27f48a99f2c0-for-git_oc-mr1-release-4017105 snap-temp-L82600000064873863 (diff)
parentMerge "Fix the input parameter for "set_retry_bootloader_message"" am: 0e60ccdc76 am: 1d6f88675b am: f1546892e1 (diff)
downloadandroid_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar.gz
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar.bz2
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar.lz
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar.xz
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.tar.zst
android_bootable_recovery-fcda99c4f77304a281568d07f130f31d6203de94.zip
-rw-r--r--recovery.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 944c24086..dfae7f03d 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1304,20 +1304,20 @@ static bool is_battery_ok() {
}
}
-static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
- std::vector<std::string> options;
- for (int i = 1; i < argc; ++i) {
- if (strstr(argv[i], "retry_count") == nullptr) {
- options.push_back(argv[i]);
- }
+static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) {
+ std::vector<std::string> options;
+ for (const auto& arg : args) {
+ if (!android::base::StartsWith(arg, "--retry_count")) {
+ options.push_back(arg);
}
+ }
- // Increment the retry counter by 1.
- options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
- std::string err;
- if (!update_bootloader_message(options, &err)) {
- LOG(ERROR) << err;
- }
+ // Increment the retry counter by 1.
+ options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count + 1));
+ std::string err;
+ if (!update_bootloader_message(options, &err)) {
+ LOG(ERROR) << err;
+ }
}
static bool bootreason_in_blacklist() {
@@ -1534,7 +1534,7 @@ int main(int argc, char **argv) {
// times before we abandon this OTA update.
if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
copy_logs();
- set_retry_bootloader_message(retry_count, argc, argv);
+ set_retry_bootloader_message(retry_count, args);
// Print retry count on screen.
ui->Print("Retry attempt %d\n", retry_count);