mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01:00
BBA/BuiltIn: Fix a crash during network stack exhaustion
This commit is contained in:
parent
69ad2cc4d0
commit
df53ebb59f
@ -510,7 +510,7 @@ void CEXIETHERNET::BuiltInBBAInterface::HandleUDPFrame(const Common::UDPPacket&
|
|||||||
void CEXIETHERNET::BuiltInBBAInterface::HandleUPnPClient()
|
void CEXIETHERNET::BuiltInBBAInterface::HandleUPnPClient()
|
||||||
{
|
{
|
||||||
StackRef* ref = GetAvailableSlot(0);
|
StackRef* ref = GetAvailableSlot(0);
|
||||||
if (m_upnp_httpd.accept(ref->tcp_socket) != sf::Socket::Done)
|
if (ref == nullptr || m_upnp_httpd.accept(ref->tcp_socket) != sf::Socket::Done)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (ref->tcp_socket.GetPeerName(&ref->from) != sf::Socket::Status::Done ||
|
if (ref->tcp_socket.GetPeerName(&ref->from) != sf::Socket::Status::Done ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user