forked from Mirrorlandia_minetest/minetest
Fix small memory leaks in client. (#7492)
This commit is contained in:
parent
93661ca212
commit
a43a4e2d97
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user