mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #3111 from ethereum/test-close-failure
Close IPC socket on connect failure
This commit is contained in:
commit
892c3ef8ef
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user