diff options
author | Tao Bao <tbao@google.com> | 2016-04-28 06:28:19 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-04-28 06:28:19 +0200 |
commit | df59ceecfb939c02593425a89757b54c50cc91cf (patch) | |
tree | e738ad4e5cd08fe68d66b29b57efa9e9f42270e4 | |
parent | Merge "Fix google-runtime-int warnings." (diff) | |
parent | updater: Don't zero out CommandParameters with memset(3). (diff) | |
download | android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar.gz android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar.bz2 android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar.lz android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar.xz android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.tar.zst android_bootable_recovery-df59ceecfb939c02593425a89757b54c50cc91cf.zip |
-rw-r--r-- | updater/blockimg.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 908e11631..2e30c5bf3 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -1318,8 +1318,7 @@ static unsigned int HashString(const char *s) { static Value* PerformBlockImageUpdate(const char* name, State* state, int /* argc */, Expr* argv[], const Command* commands, size_t cmdcount, bool dryrun) { - CommandParameters params; - memset(¶ms, 0, sizeof(params)); + CommandParameters params = {}; params.canwrite = !dryrun; fprintf(stderr, "performing %s\n", dryrun ? "verification" : "update"); |