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

Commit 68cd99ec authored by Svet Ganov's avatar Svet Ganov Committed by android-build-merger
Browse files

Fix NPE in autofill am: 833c68e9

am: 651a974d

Change-Id: I3227f1272f123c8de934c4c22d6ebc1355ddf7b5
parents 44f3507d 651a974d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -586,7 +586,7 @@ final class Session implements RemoteFillService.FillServiceCallbacks, ViewState
                }
                viewState = new ViewState(this, id, value, this, ViewState.STATE_INITIAL);
                mViewStates.put(id, viewState);
            } else if ((flags & FLAG_VIEW_ENTERED) != 0) {
            } else if (mStructure != null && (flags & FLAG_VIEW_ENTERED) != 0) {
                viewState = startPartitionLocked(id, value);
            } else {
                if (VERBOSE) Slog.v(TAG, "Ignored " + getFlagAsString(flags) + " for " + id);