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

Commit a42a6b99 authored by Steve Kondik's avatar Steve Kondik
Browse files

Fix NPE in changeCursor from bad kang.

parent 5d5d648e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -3535,6 +3535,11 @@ public class ContactsListActivity extends ListActivity implements View.OnCreateC
        }

        private void updateIndexer(Cursor cursor) {
            if (cursor == null) {
                mIndexer = null;
                return;
            }

            if (mIndexer == null) {
                mIndexer = getNewIndexer(cursor);
            } else {