diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-23 01:45:51 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-23 01:45:51 +0100 |
commit | 5e1a2dc5227d86761b43b39a93a83dfd95975de4 (patch) | |
tree | 9e4357aa169dac1a093adc1ffc70d12d71f59c6d /updater/updater.cpp | |
parent | Merge "Fix the permission of stashed blocks created by updater" am: d882b8892a am: deb2a29a42 (diff) | |
parent | Merge "Remove malloc in edify functions" am: 1ea869b0c6 (diff) | |
download | android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar.gz android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar.bz2 android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar.lz android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar.xz android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.tar.zst android_bootable_recovery-5e1a2dc5227d86761b43b39a93a83dfd95975de4.zip |
Diffstat (limited to 'updater/updater.cpp')
-rw-r--r-- | updater/updater.cpp | 2 |
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) { |