Fix potential crash in chat handling (since 2f56a00d9e)

This commit is contained in:
sfan5 2017-01-22 20:17:13 +01:00
parent 39123fcce5
commit 43822de5c6
1 changed files with 1 additions and 1 deletions

View File

@ -2864,7 +2864,7 @@ std::wstring Server::handleChat(const std::string &name, const std::wstring &wna
*/
u16 peer_id_to_avoid_sending = (player ? player->peer_id : PEER_ID_INEXISTENT);
if (player->protocol_version >= 29)
if (player && player->protocol_version >= 29)
peer_id_to_avoid_sending = PEER_ID_INEXISTENT;
for (u16 i = 0; i < clients.size(); i++) {