diff options
author | Tao Bao <tbao@google.com> | 2016-11-04 17:11:56 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-11-04 17:11:56 +0100 |
commit | b9c3411de7999b967109be6e46099efa38128174 (patch) | |
tree | 756a57b612611dfd38a1f32e5b97bd3dac6023ca /verifier.cpp | |
parent | Merge "updater: Fix an off-by-1 bug in file_getprop()." am: da2b34b5d0 (diff) | |
parent | Merge "Revert "Revert "Some cleanups to recovery.""" (diff) | |
download | android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.gz android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.bz2 android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.lz android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.xz android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.zst android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.zip |
Diffstat (limited to 'verifier.cpp')
-rw-r--r-- | verifier.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/verifier.cpp b/verifier.cpp index 82cdd3bc7..44098f70e 100644 --- a/verifier.cpp +++ b/verifier.cpp @@ -14,9 +14,11 @@ * limitations under the License. */ +#include "verifier.h" + #include <errno.h> -#include <malloc.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <algorithm> @@ -31,9 +33,6 @@ #include "common.h" #include "print_sha1.h" #include "ui.h" -#include "verifier.h" - -extern RecoveryUI* ui; static constexpr size_t MiB = 1024 * 1024; |