Merge pull request #29793 from Faless/enet/bind

Fix ENet incorrectly binding to wildcard.
This commit is contained in:
Rémi Verschelde 2019-06-15 10:28:49 +02:00 committed by GitHub
commit 63b8c00d55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()) {