Launcher: fix a crash on searching locations
When hitting return multiple times, could hit a null-pointer crash here.
This commit is contained in:
parent
9c612af124
commit
3a15b2f979
1 changed files with 4 additions and 0 deletions
|
@ -316,6 +316,10 @@ private slots:
|
|||
|
||||
void onSearchResultsPoll()
|
||||
{
|
||||
if (m_search.isNull()) {
|
||||
return;
|
||||
}
|
||||
|
||||
PositionedIDVec newIds = m_search->results();
|
||||
|
||||
beginInsertRows(QModelIndex(), m_ids.size(), newIds.size() - 1);
|
||||
|
|
Loading…
Reference in a new issue