summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/corelib/thread/qorderedmutexlocker_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qorderedmutexlocker_p.h b/src/corelib/thread/qorderedmutexlocker_p.h
index 6402be92bf..65c41d4f21 100644
--- a/src/corelib/thread/qorderedmutexlocker_p.h
+++ b/src/corelib/thread/qorderedmutexlocker_p.h
@@ -82,8 +82,8 @@ public:
void unlock()
{
if (locked) {
- if (mtx1) mtx1->unlock();
if (mtx2) mtx2->unlock();
+ if (mtx1) mtx1->unlock();
locked = false;
}
}