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

Commit 67e95052 authored by Ken Wakasa's avatar Ken Wakasa Committed by Android Git Automerger
Browse files

am bc891b67: Merge "Fix NPE in IInputMethodSessionWrapper.executeMessage" into honeycomb

* commit 'bc891b67':
  Fix NPE in IInputMethodSessionWrapper.executeMessage
parents 98d169ea bc891b67
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -76,6 +76,8 @@ class IInputMethodSessionWrapper extends IInputMethodSession.Stub
    }
    }


    public void executeMessage(Message msg) {
    public void executeMessage(Message msg) {
        if (mInputMethodSession == null) return;

        switch (msg.what) {
        switch (msg.what) {
            case DO_FINISH_INPUT:
            case DO_FINISH_INPUT:
                mInputMethodSession.finishInput();
                mInputMethodSession.finishInput();