Fix potential crash. Closes #5873.

This commit is contained in:
Chocobo1 2016-10-30 16:09:50 +08:00
commit aba625d544

View file

@ -544,7 +544,8 @@ void TrackerFiltersList::removeItem(const QString &tracker, const QString &hash)
updateGeometry(); updateGeometry();
return; return;
} }
trackerItem->setText(tr("%1 (%2)", "openbittorrent.com (10)").arg(host).arg(tmp.size())); if (trackerItem != nullptr)
trackerItem->setText(tr("%1 (%2)", "openbittorrent.com (10)").arg(host).arg(tmp.size()));
} }
else { else {
row = 1; row = 1;