mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-29 14:15:31 +00:00
try to catch invalid handle in deluge_core
This commit is contained in:
parent
e0367895b7
commit
fd7d1ce675
1 changed files with 19 additions and 16 deletions
|
@ -1787,23 +1787,26 @@ static PyObject *torrent_replace_trackers(PyObject *self, PyObject *args)
|
||||||
if (PyErr_Occurred())
|
if (PyErr_Occurred())
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (M_torrents->at(index).handle.is_valid()){
|
try {
|
||||||
std::vector<libtorrent::announce_entry> trackerlist;
|
if (M_torrents->at(index).handle.is_valid()){
|
||||||
std::istringstream trackers(tracker);
|
std::vector<libtorrent::announce_entry> trackerlist;
|
||||||
std::string line;
|
std::istringstream trackers(tracker);
|
||||||
while (std::getline(trackers, line)) {
|
std::string line;
|
||||||
libtorrent::announce_entry a_entry(line);
|
while (std::getline(trackers, line)) {
|
||||||
trackerlist.push_back(a_entry);
|
libtorrent::announce_entry a_entry(line);
|
||||||
|
trackerlist.push_back(a_entry);
|
||||||
|
}
|
||||||
|
if (trackerlist.empty()){
|
||||||
|
std::vector<libtorrent::announce_entry> empty;
|
||||||
|
M_torrents->at(index).handle.replace_trackers(empty);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
M_torrents->at(index).handle.replace_trackers(trackerlist);
|
||||||
|
M_torrents->at(index).handle.force_reannounce();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (trackerlist.empty()){
|
}
|
||||||
std::vector<libtorrent::announce_entry> empty;
|
catch (libtorrent::invalid_handle&) {}
|
||||||
M_torrents->at(index).handle.replace_trackers(empty);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
M_torrents->at(index).handle.replace_trackers(trackerlist);
|
|
||||||
M_torrents->at(index).handle.force_reannounce();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Py_INCREF(Py_None); return Py_None;
|
Py_INCREF(Py_None); return Py_None;
|
||||||
}
|
}
|
||||||
static PyObject *torrent_prioritize_files(PyObject *self, PyObject *args)
|
static PyObject *torrent_prioritize_files(PyObject *self, PyObject *args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue