Change storage duration to static for native choreographer.

This ensures that the region is zero initialized, regardless of compiler.

Change-Id: Ie0bfa5d2cd2486ba31a45aee4de6c370513bfc62
This commit is contained in:
Michael Wright
2016-01-26 16:03:25 -08:00
parent c9fd313f94
commit ff20b979e7

View File

@@ -82,7 +82,7 @@ private:
};
thread_local Choreographer* gChoreographer;
static thread_local Choreographer* gChoreographer;
Choreographer* Choreographer::getForThread() {
if (gChoreographer == nullptr) {
sp<Looper> looper = Looper::getForThread();