From: Michael Jumper Date: Sat, 19 Mar 2011 23:50:18 +0000 (-0700) Subject: Ignore SIGPIPE (force checking of EPIPE instead). X-Git-Url: http://git.alex.org.uk Ignore SIGPIPE (force checking of EPIPE instead). --- diff --git a/src/daemon.c b/src/daemon.c index 4364eee..ef21908 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -39,6 +39,7 @@ #include #include #include +#include #include #ifdef __MINGW32__ @@ -103,7 +104,6 @@ void* start_client_thread(void* data) { } guac_start_client(client); - guac_free_client(client); /* Close socket */ @@ -235,6 +235,11 @@ int main(int argc, char* argv[]) { /* Otherwise, this is the daemon */ GUAC_LOG_INFO("Started, listening on port %i", listen_port); + /* Ignore SIGPIPE */ + if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) { + GUAC_LOG_ERROR("Could not set handler for SIGPIPE to ignore. SIGPIPE will cause termination of the daemon."); + } + /* Daemon loop */ for (;;) {