mirror of
https://github.com/minetest/minetest.git
synced 2025-07-01 23:50:22 +02:00
Fix possible missing unlock of env_lock
This commit is contained in:
@ -4222,9 +4222,10 @@ void Server::DeleteClient(u16 peer_id, ClientDeletionReason reason)
|
|||||||
<<" List of players: "<<os.str()<<std::endl;
|
<<" List of players: "<<os.str()<<std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
m_env_mutex.Lock();
|
{
|
||||||
|
JMutexAutoLock env_lock(m_env_mutex);
|
||||||
m_clients.DeleteClient(peer_id);
|
m_clients.DeleteClient(peer_id);
|
||||||
m_env_mutex.Unlock();
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send leave chat message to all remaining clients
|
// Send leave chat message to all remaining clients
|
||||||
|
Reference in New Issue
Block a user