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 ea86ecf015
commit e66d5e500c
1 changed files with 3 additions and 0 deletions

View File

@ -230,6 +230,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()) {
@ -257,6 +259,7 @@ Client::~Client()
}
delete m_minimap;
delete m_media_downloader;
}
void Client::connect(Address address, bool is_local_server)