Fix an NPE.
Bug: 17958289 Change-Id: I5c9ea668ff75b38c7ddebd767c36a950835c0c9f
This commit is contained in:
parent
59f5988a16
commit
7d74594123
1 changed files with 2 additions and 1 deletions
|
@ -860,9 +860,10 @@ public final class RichInputConnection implements PrivateCommandPerformer {
|
|||
* than it really is.
|
||||
*/
|
||||
public void tryFixLyingCursorPosition() {
|
||||
mIC = mParent.getCurrentInputConnection();
|
||||
final CharSequence textBeforeCursor = getTextBeforeCursor(
|
||||
Constants.EDITOR_CONTENTS_CACHE_SIZE, 0);
|
||||
final CharSequence selectedText = mIC.getSelectedText(0 /* flags */);
|
||||
final CharSequence selectedText = null == mIC ? null : mIC.getSelectedText(0 /* flags */);
|
||||
if (null == textBeforeCursor ||
|
||||
(!TextUtils.isEmpty(selectedText) && mExpectedSelEnd == mExpectedSelStart)) {
|
||||
// If textBeforeCursor is null, we have no idea what kind of text field we have or if
|
||||
|
|
Loading…
Reference in a new issue