Fix lock hygiene check in CConnectionTransportP2PICE_WebRTC

P4:9151993
This commit is contained in:
Fletcher Dunn
2024-08-30 15:10:28 -07:00
parent 2c238af626
commit abd487c665
@@ -23,7 +23,7 @@ namespace SteamNetworkingSocketsLib {
CConnectionTransportP2PICE_WebRTC::CConnectionTransportP2PICE_WebRTC( CSteamNetworkConnectionP2P &connection )
: CConnectionTransportP2PICE( connection )
, m_pICESession( nullptr )
, m_mutexPacketQueue( "ice_packet_queue" )
, m_mutexPacketQueue( "ice_packet_queue", LockDebugInfo::k_nOrder_Max ) // never take another lock while holding this
{
}