aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/pop/MCPOPAsyncSession.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/async/pop/MCPOPAsyncSession.cpp')
-rw-r--r--src/async/pop/MCPOPAsyncSession.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/async/pop/MCPOPAsyncSession.cpp b/src/async/pop/MCPOPAsyncSession.cpp
index dead660f..f1897b84 100644
--- a/src/async/pop/MCPOPAsyncSession.cpp
+++ b/src/async/pop/MCPOPAsyncSession.cpp
@@ -240,13 +240,13 @@ void POPAsyncSession::setConnectionLogger(ConnectionLogger * logger)
{
pthread_mutex_lock(&mConnectionLoggerLock);
mConnectionLogger = logger;
- if (mConnectionLogger != NULL) {
+ pthread_mutex_unlock(&mConnectionLoggerLock);
+ if (logger != NULL) {
mSession->setConnectionLogger(mInternalLogger);
}
else {
mSession->setConnectionLogger(NULL);
}
- pthread_mutex_unlock(&mConnectionLoggerLock);
}
ConnectionLogger * POPAsyncSession::connectionLogger()