summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeexpression.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-03-17 09:07:38 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-03-17 09:08:54 (GMT)
commitd54b11fef6403693de09277a645c9666f8eea6a2 (patch)
tree46b37c15ef196dc7b2b3af6779a22b26340ecb88 /src/declarative/qml/qdeclarativeexpression.cpp
parentfd63689b6202fac71e2b037f70a3ee808ba571ec (diff)
downloadQt-d54b11fef6403693de09277a645c9666f8eea6a2.zip
Qt-d54b11fef6403693de09277a645c9666f8eea6a2.tar.gz
Qt-d54b11fef6403693de09277a645c9666f8eea6a2.tar.bz2
Fix crash
If the notifier gets swapped out during emitting, the endpoint is also invalidated. Thus the "disconnected" writeback must track the endpoint not just the Notifier.
Diffstat (limited to 'src/declarative/qml/qdeclarativeexpression.cpp')
-rw-r--r--src/declarative/qml/qdeclarativeexpression.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/qml/qdeclarativeexpression.cpp b/src/declarative/qml/qdeclarativeexpression.cpp
index 20863c7..9eed345 100644
--- a/src/declarative/qml/qdeclarativeexpression.cpp
+++ b/src/declarative/qml/qdeclarativeexpression.cpp
@@ -98,6 +98,7 @@ QDeclarativeExpressionPrivate::~QDeclarativeExpressionPrivate()
if (data) {
delete [] data->guardList;
data->guardList = 0;
+ data->guardListLength = 0;
data->q = 0;
data->release();
data = 0;