diff options
author | Michael Goddard <michael.goddard@nokia.com> | 2009-05-26 10:39:36 +1000 |
---|---|---|
committer | Michael Goddard <michael.goddard@nokia.com> | 2009-05-26 12:19:25 +1000 |
commit | 682b854872c26d7408d79131217825fb8ddace6a (patch) | |
tree | 9974a6ed60c37fd233bd675fa9f5e63b9d9c89ba /src/gui/kernel/qcursor.cpp | |
parent | 2248d63c1a32ae84bb6d0bde9021a8074db1b4c9 (diff) | |
download | qt4-tools-682b854872c26d7408d79131217825fb8ddace6a.tar.gz |
BT:Fix access of deleted memory with a static QCursor.
If a QCursor with a predefined shape is declared static, it could be
destroyed after the application dtor has already cleaned up QCursor
memory.
Task-number: 254467
Reviewed-by: Rhys Weatherley
Diffstat (limited to 'src/gui/kernel/qcursor.cpp')
-rw-r--r-- | src/gui/kernel/qcursor.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/kernel/qcursor.cpp b/src/gui/kernel/qcursor.cpp index ed7e020d23..598f4bae46 100644 --- a/src/gui/kernel/qcursor.cpp +++ b/src/gui/kernel/qcursor.cpp @@ -375,7 +375,9 @@ void QCursorData::cleanup() return; for (int shape = 0; shape <= Qt::LastCursor; ++shape) { - delete qt_cursorTable[shape]; + // In case someone has a static QCursor defined with this shape + if (!qt_cursorTable[shape]->ref.deref()) + delete qt_cursorTable[shape]; qt_cursorTable[shape] = 0; } QCursorData::initialized = false; |