1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Avoid NPE

This commit is contained in:
cketti 2013-03-05 03:35:09 +01:00
parent e77c341542
commit df8ea306b8

View File

@ -3379,7 +3379,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
@Override
public void onLoaderReset(Loader<Cursor> loader) {
mSelected = null;
mSelected.clear();
mAdapter.swapCursor(null);
}