Procházet zdrojové kódy

Fix possible use-after-free in lobby server

Ivan Savenko před 10 měsíci
rodič
revize
3965c6a0a1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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();