forked from organicmaps/organicmaps
Fixed possible NullPointException mSearchController
nSearchController.hide() could throw a NullPointerException. Furthermore, the check later would then be redundant and should be moved earlier.
This commit is contained in:
parent
f52796e411
commit
175b4a0a6b
1 changed files with 2 additions and 3 deletions
|
@ -1264,13 +1264,12 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
return;
|
||||
}
|
||||
|
||||
if (mSearchController.hide())
|
||||
if (mSearchController != null && mSearchController.hide())
|
||||
{
|
||||
SearchEngine.INSTANCE.cancelInteractiveSearch();
|
||||
if (mFilterController != null)
|
||||
mFilterController.resetFilter();
|
||||
if (mSearchController != null)
|
||||
mSearchController.clear();
|
||||
mSearchController.clear();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue