Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18a8af21 authored by Andrew Zeng's avatar Andrew Zeng Committed by android-build-merger
Browse files

Merge "Fix NPE in LockSettingsService." into cw-f-dev am: 4aff3d53 am: a01e2212

am: d4e88e26

Change-Id: Ie7d409e8ef3ec5c3201bcaf0ae125ca71dc10c08
parents 24b7831f d4e88e26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1488,7 +1488,7 @@ public class LockSettingsService extends ILockSettings.Stub {
            return VerifyCredentialResponse.OK;
        }

        if (TextUtils.isEmpty(credential)) {
        if (storedHash == null || TextUtils.isEmpty(credential)) {
            return VerifyCredentialResponse.ERROR;
        }