mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-26 11:16:20 +03:00
Avoid possible crash on exit when the IP filter is enabled
This commit is contained in:
parent
e19a5df968
commit
b03fa32624
2 changed files with 4 additions and 3 deletions
|
@ -407,6 +407,8 @@ protected:
|
|||
ruleCount = parseDATFilterFile(filePath);
|
||||
}
|
||||
}
|
||||
if(abort)
|
||||
return;
|
||||
try {
|
||||
s->set_ip_filter(filter);
|
||||
emit IPFilterParsed(ruleCount);
|
||||
|
|
|
@ -161,9 +161,6 @@ QBtSession::~QBtSession() {
|
|||
#endif
|
||||
saveSessionState();
|
||||
saveFastResumeData();
|
||||
qDebug("Deleting the session");
|
||||
delete s;
|
||||
qDebug("Session deleted");
|
||||
// Delete our objects
|
||||
if(m_tracker)
|
||||
delete m_tracker;
|
||||
|
@ -178,6 +175,8 @@ QBtSession::~QBtSession() {
|
|||
// HTTP Server
|
||||
if(httpServer)
|
||||
delete httpServer;
|
||||
qDebug("Deleting the session");
|
||||
delete s;
|
||||
qDebug("BTSession destructor OUT");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue