From eeb38a8e3a2e76e4fed25def77a2ee4d0fae2b27 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 20 Jan 2009 16:51:55 +0000 Subject: (svn r15176) -Fix [FS#2554]: querying the content server could free when resolving the hostname or connecting takes long/is timing out. --- src/network/core/tcp_content.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/network/core') diff --git a/src/network/core/tcp_content.h b/src/network/core/tcp_content.h index 60f68d933..e084f5fc7 100644 --- a/src/network/core/tcp_content.h +++ b/src/network/core/tcp_content.h @@ -191,9 +191,9 @@ public: * @param sin IP etc. of the client */ NetworkContentSocketHandler(SOCKET s, const struct sockaddr_in *sin) : - NetworkTCPSocketHandler(s), - client_addr(*sin) + NetworkTCPSocketHandler(s) { + if (sin != NULL) this->client_addr = *sin; } /** On destructing of this class, the socket needs to be closed */ -- cgit v1.2.3-70-g09d2