Fix uninitialized memory usage (caught by Valgrind)

This commit is contained in:
Cameron Gutman 2015-06-22 21:07:07 -07:00
parent 43e6d35b8f
commit 1c0f573489

View File

@ -88,6 +88,7 @@ int initializePlatformSockets(void) {
// Disable SIGPIPE signals to avoid us getting
// killed when a socket gets an EPIPE error
struct sigaction sa;
sigemptyset(&sa.sa_mask);
sa.sa_handler = SIG_IGN;
sa.sa_flags = 0;
if (sigaction(SIGPIPE, &sa, 0) == -1) {