Browse Source

Fix possible use-after-free in lobby server

Ivan Savenko 9 months ago
parent
commit
3965c6a0a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lobby/LobbyServer.cpp

+ 1 - 1
lobby/LobbyServer.cpp

@@ -325,7 +325,7 @@ void LobbyServer::onDisconnected(const NetworkConnectionPtr & connection, const
 
 	if(activeProxies.count(connection))
 	{
-		const auto & otherConnection = activeProxies.at(connection);
+		const auto otherConnection = activeProxies.at(connection);
 
 		if (otherConnection)
 			otherConnection->close();