Fix small memory leaks in client. (#7492)

This commit is contained in:
red-001 2018-06-27 16:06:37 +01:00 committed by Loïc Blot
parent 93661ca212
commit a43a4e2d97
1 changed files with 3 additions and 0 deletions

View File

@ -250,6 +250,8 @@ Client::~Client()
m_shutdown = true;
m_con->Disconnect();
deleteAuthData();
m_mesh_update_thread.stop();
m_mesh_update_thread.wait();
while (!m_mesh_update_thread.m_queue_out.empty()) {
@ -274,6 +276,7 @@ Client::~Client()
}
delete m_minimap;
delete m_media_downloader;
}
void Client::connect(Address address, bool is_local_server)