Merge "Crash on non-eng builds due to lacking null check." into jb-mr2-dev

This commit is contained in:
Svetoslav
2013-04-15 21:52:07 +00:00
committed by Android (Google) Code Review

View File

@@ -2501,7 +2501,9 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
public void flush() {
synchronized (mLock) {
cancelAllPendingEventsLocked();
mSentEventsVerifier.reset();
if (mSentEventsVerifier != null) {
mSentEventsVerifier.reset();
}
}
}