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

Commit a4717281 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add null check in InputManagerService#verifyInputEvent" into sc-v2-dev

parents db885833 1416a9c4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -900,6 +900,7 @@ public class InputManagerService extends IInputManager.Stub

    @Override // Binder call
    public VerifiedInputEvent verifyInputEvent(InputEvent event) {
        Objects.requireNonNull(event, "event must not be null");
        return nativeVerifyInputEvent(mPtr, event);
    }