summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcleanup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/qmlcleanup.cpp')
-rw-r--r--src/declarative/qml/qmlcleanup.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlcleanup.cpp b/src/declarative/qml/qmlcleanup.cpp
index 0da6452..599e4e7 100644
--- a/src/declarative/qml/qmlcleanup.cpp
+++ b/src/declarative/qml/qmlcleanup.cpp
@@ -61,7 +61,9 @@ Create a QmlCleanup for \a engine
QmlCleanup::QmlCleanup(QmlEngine *engine)
: prev(0), next(0)
{
- Q_ASSERT(engine);
+ if (!engine)
+ return;
+
QmlEnginePrivate *p = QmlEnginePrivate::get(engine);
if (p->cleanup) next = p->cleanup;