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

Commit 3e80635a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "IME: Add one missing exception catch for startInputInnerLocked"

parents 159b945d 2feffba7
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -1188,7 +1188,12 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
            }
        }

        try {
            return startInputInnerLocked();
        } catch (RuntimeException e) {
            Slog.w(TAG, "Unexpected exception.", e);
            return null;
        }
    }

    InputBindResult startInputInnerLocked() {