[RESTRICT AUTOMERGE] Fix NullPointerException when mLockPatternUtils is not set.

Test: atest LockTaskControllerTest
Bug: 132593073
Change-Id: I1bfacd5992569d67cdaa526b18d1c426a366babb
This commit is contained in:
Jonathan Scott
2019-05-13 13:14:19 +01:00
parent 9799956531
commit fa1b986746

View File

@@ -794,7 +794,7 @@ public class LockTaskController {
} catch (Settings.SettingNotFoundException e) {
// Log to SafetyNet for b/127605586
android.util.EventLog.writeEvent(0x534e4554, "127605586", -1, "");
return mLockPatternUtils.isSecure(USER_CURRENT);
return getLockPatternUtils().isSecure(USER_CURRENT);
}
}