summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-17 23:09:03 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-07-17 23:09:03 +0200
commit29932e7bcc2865494e4cf03248381475687d227b (patch)
treefa668d92873b1f1d1df22bb992610ea53a69ed49 /recovery.cpp
parentMerge "applypatch: Consolidate CacheSizeCheck() and MakeFreeSpaceOnCache()." (diff)
parentFix the arguments passed to getopt_long(3). (diff)
downloadandroid_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.gz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.bz2
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.lz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.xz
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.tar.zst
android_bootable_recovery-29932e7bcc2865494e4cf03248381475687d227b.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/recovery.cpp b/recovery.cpp
index fea65ae9e..3284440da 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -963,10 +963,6 @@ static void log_failure_code(ErrorCode code, const std::string& update_package)
}
Device::BuiltinAction start_recovery(Device* device, const std::vector<std::string>& args) {
- std::vector<char*> args_to_parse(args.size());
- std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
- [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
-
static constexpr struct option OPTIONS[] = {
{ "fsck_unshare_blocks", no_argument, nullptr, 0 },
{ "just_exit", no_argument, nullptr, 'x' },
@@ -1002,9 +998,14 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
bool security_update = false;
std::string locale;
+ auto args_to_parse = StringVectorToNullTerminatedArray(args);
+
int arg;
int option_index;
- while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
+ // Parse everything before the last element (which must be a nullptr). getopt_long(3) expects a
+ // null-terminated char* array, but without counting null as an arg (i.e. argv[argc] should be
+ // nullptr).
+ while ((arg = getopt_long(args_to_parse.size() - 1, args_to_parse.data(), "", OPTIONS,
&option_index)) != -1) {
switch (arg) {
case 't':