aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlcontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlcontext.cpp')
-rw-r--r--src/qml/qml/qqmlcontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlcontext.cpp b/src/qml/qml/qqmlcontext.cpp
index d308e85673..66ba6fdaf3 100644
--- a/src/qml/qml/qqmlcontext.cpp
+++ b/src/qml/qml/qqmlcontext.cpp
@@ -626,12 +626,12 @@ void QQmlContextData::clearContext()
void QQmlContextData::destroy()
{
Q_ASSERT(refCount == 0);
- linkedContext = nullptr;
// avoid recursion
++refCount;
if (engine)
invalidate();
+ linkedContext = nullptr;
Q_ASSERT(refCount == 1);
clearContext();