mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-06 15:04:34 +08:00
Potential fix for crash. Closes #4607.
This commit is contained in:
parent
2bb76bf781
commit
3067f82aea
@ -480,10 +480,13 @@ void TrackerFiltersList::addItem(const QString &tracker, const QString &hash)
|
||||
if (tmp.contains(hash))
|
||||
return;
|
||||
|
||||
if (host != "")
|
||||
if (host != "") {
|
||||
trackerItem = item(rowFromTracker(host));
|
||||
else
|
||||
if (!trackerItem) return;
|
||||
}
|
||||
else {
|
||||
trackerItem = item(1);
|
||||
}
|
||||
}
|
||||
else {
|
||||
trackerItem = new QListWidgetItem();
|
||||
|
Loading…
Reference in New Issue
Block a user