mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07: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
|
@ -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…
Add table
Add a link
Reference in a new issue