Explorar el Código

Merge pull request #29793 from Faless/enet/bind

Fix ENet incorrectly binding to wildcard.
Rémi Verschelde hace 6 años
padre
commit
63b8c00d55
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      modules/enet/networked_multiplayer_enet.cpp

+ 1 - 0
modules/enet/networked_multiplayer_enet.cpp

@@ -80,6 +80,7 @@ Error NetworkedMultiplayerENet::create_server(int p_port, int p_max_clients, int
 	ERR_FAIL_COND_V(p_out_bandwidth < 0, ERR_INVALID_PARAMETER);
 
 	ENetAddress address;
+	memset(&address, 0, sizeof(address));
 
 #ifdef GODOT_ENET
 	if (bind_ip.is_wildcard()) {