summaryrefslogtreecommitdiffstats
path: root/updater/updater.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-03-23 01:20:51 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-03-23 01:20:53 +0100
commit1ea869b0c6b6287989f98ed16103a246fe9ae64a (patch)
treed66338f891ad8b440a36e781988fae89cca1da7f /updater/updater.cpp
parentMerge "Fix the permission of stashed blocks created by updater" (diff)
parentRemove malloc in edify functions (diff)
downloadandroid_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.gz
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.bz2
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.lz
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.xz
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.zst
android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.zip
Diffstat (limited to 'updater/updater.cpp')
-rw-r--r--updater/updater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp
index 22c060fcb..0693cbd98 100644
--- a/updater/updater.cpp
+++ b/updater/updater.cpp
@@ -130,7 +130,7 @@ int main(int argc, char** argv) {
// Parse the script.
- Expr* root;
+ std::unique_ptr<Expr> root;
int error_count = 0;
int error = parse_string(script.c_str(), &root, &error_count);
if (error != 0 || error_count > 0) {