summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-01-14 03:05:31 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-01-14 03:05:31 +0100
commit4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271 (patch)
tree0e878381eab60ddef7b43ede546e9f34991a4450
parentRevert "Byte swap to support BGRA in recovery mode" am: a5d5082222 (diff)
parentMerge "uncrypt: avoid use-after-free" (diff)
downloadandroid_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar.gz
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar.bz2
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar.lz
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar.xz
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.tar.zst
android_bootable_recovery-4edfeb84ddd8fe93d3dcb028fc1f0a7c12f21271.zip
-rw-r--r--uncrypt/uncrypt.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index 20efbe4df..de7e48182 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -418,8 +418,6 @@ int uncrypt(const char* input_path, const char* map_file, int status_fd) {
}
int main(int argc, char** argv) {
- const char* input_path;
- const char* map_file;
if (argc != 3 && argc != 1 && (argc == 2 && strcmp(argv[1], "--reboot") != 0)) {
fprintf(stderr, "usage: %s [--reboot] [<transform_path> <map_file>]\n", argv[0]);
@@ -443,13 +441,16 @@ int main(int argc, char** argv) {
}
unique_fd status_fd_holder(status_fd);
+ std::string package;
+ const char* input_path;
+ const char* map_file;
+
if (argc == 3) {
// when command-line args are given this binary is being used
// for debugging.
input_path = argv[1];
map_file = argv[2];
} else {
- std::string package;
if (!find_uncrypt_package(package)) {
android::base::WriteStringToFd("-1\n", status_fd);
return 1;