am 48abd574: am 34ff5fe3: am 74b90b30: Merge "screen_ui: Initialize text buffer"

* commit '48abd574cb1b7b0adbe1de36224fb974182aaa2d':
  screen_ui: Initialize text buffer
This commit is contained in:
Doug Zongker 2014-05-13 17:38:15 +00:00 committed by Android Git Automerger
commit 8c7457a2c5

View file

@ -78,6 +78,8 @@ ScreenRecoveryUI::ScreenRecoveryUI() :
for (int i = 0; i < 5; i++) for (int i = 0; i < 5; i++)
backgroundIcon[i] = NULL; backgroundIcon[i] = NULL;
memset(text, 0, sizeof(text));
pthread_mutex_init(&updateMutex, NULL); pthread_mutex_init(&updateMutex, NULL);
self = this; self = this;
} }