Close IPC socket on connect failure

This commit is contained in:
Alex Beregszaszi 2017-10-19 11:00:24 +01:00
parent 7454a766b3
commit 362615c9c4

View File

@ -74,7 +74,10 @@ IPCSocket::IPCSocket(string const& _path): m_path(_path)
BOOST_FAIL("Error creating IPC socket object");
if (connect(m_socket, reinterpret_cast<struct sockaddr const*>(&saun), sizeof(struct sockaddr_un)) < 0)
{
close(m_socket);
BOOST_FAIL("Error connecting to IPC socket: " << _path);
}
#endif
}