summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2014-06-06 17:33:16 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-06-06 17:33:16 +0200
commitcfd4b2864534f062a01730d81b2cd7e054087e8f (patch)
tree8e59963541816337043f4607fa09fb5b6c2775f5
parentam 5fbb729f: Merge "exit instead of return if sideload file creation fails" (diff)
parentrecovery: initialize keys press tracking status (diff)
downloadandroid_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar.gz
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar.bz2
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar.lz
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar.xz
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.tar.zst
android_bootable_recovery-cfd4b2864534f062a01730d81b2cd7e054087e8f.zip
-rw-r--r--ui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.cpp b/ui.cpp
index 5043ee528..a7c8bea48 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -55,6 +55,7 @@ RecoveryUI::RecoveryUI() :
pthread_mutex_init(&key_queue_mutex, NULL);
pthread_cond_init(&key_queue_cond, NULL);
self = this;
+ memset(key_pressed, 0, sizeof(key_pressed));
}
void RecoveryUI::Init() {