Fix assert not compiling in releaseRef

This commit is contained in:
WebFreak001 2019-01-09 00:28:27 +01:00
parent 9d6b34c73a
commit 4d4401c31f

View file

@ -218,8 +218,10 @@ TCPConnection connectTCP(NetworkAddress addr, NetworkAddress bind_address = anyA
": timeout");
if (status != ConnectStatus.connected) {
if (sock != SocketFD.invalid)
assert(!eventDriver.sockets.releaseRef(sock));
if (sock != SocketFD.invalid) {
bool refsLeft = eventDriver.sockets.releaseRef(sock);
assert(!refsLeft);
}
enforce(false, "Failed to connect to "~addr.toString()~": "~status.to!string);
assert(false);