Skip to content
Snippets Groups Projects
Commit dd32ad2a authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: prevent cancellation in ~Socket()

parent ae1a061f
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,7 @@
#include <Common/StringUtil.h>
#include <Common/hexdump.h>
#include <Common/Exception.h>
#include <Common/Thread/Cancellation.h>
#ifndef USE_NOSOCKETS
......@@ -181,6 +182,8 @@ Socket::Socket (const string& socketname,
//
Socket::~Socket()
{
ScopedDelayCancellation dc; // close is and unlink can be a cancellation point
LOG_TRACE_OBJ (formatString("~Socket(%d)", itsSocketID));
if (itsSocketID >=0 && close() != SK_OK) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment