summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-03-23 14:34:20 +0100
committerTao Bao <tbao@google.com>2017-03-23 14:52:45 +0100
commitdb56eb073e595a862f620e244e23471665f63527 (patch)
tree894359381e21804f18317b6442e66d6b402d922b /updater
parentMerge "Remove malloc in edify functions" (diff)
downloadandroid_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar.gz
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar.bz2
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar.lz
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar.xz
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.tar.zst
android_bootable_recovery-db56eb073e595a862f620e244e23471665f63527.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index c9a0270ec..f91f3fc9f 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -691,7 +691,7 @@ Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::
const std::string& filename = args[0];
std::vector<std::string> sha1s;
- if (!ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
+ if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
}
int result = applypatch_check(filename.c_str(), sha1s);