瀏覽代碼

Fix possible use-after-free in lobby server

Ivan Savenko 9 月之前
父節點
當前提交
3965c6a0a1
共有 1 個文件被更改,包括 1 次插入1 次删除
  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();