1
0
espelhamento de https://github.com/luanti-org/luanti.git sincronizado 2025-12-20 05:45:20 +01:00

Server GotBlocks(): Lock clients to avoid multithreading issues

Esse commit está contido em:
SmallJoker
2021-02-02 19:10:35 +01:00
commit 7ebd5da9cd

Ver Arquivo

@@ -438,18 +438,20 @@ void Server::handleCommand_GotBlocks(NetworkPacket* pkt)
u8 count;
*pkt >> count;
RemoteClient *client = getClient(pkt->getPeerId());
if ((s16)pkt->getSize() < 1 + (int)count * 6) {
throw con::InvalidIncomingDataException
("GOTBLOCKS length is too short");
}
m_clients.lock();
RemoteClient *client = m_clients.lockedGetClientNoEx(pkt->getPeerId());
for (u16 i = 0; i < count; i++) {
v3s16 p;
*pkt >> p;
client->GotBlock(p);
}
m_clients.unlock();
}
void Server::process_PlayerPos(RemotePlayer *player, PlayerSAO *playersao,