summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qcursor.cpp
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2009-05-26 10:39:36 +1000
committerMichael Goddard <michael.goddard@nokia.com>2009-05-26 12:19:25 +1000
commit682b854872c26d7408d79131217825fb8ddace6a (patch)
tree9974a6ed60c37fd233bd675fa9f5e63b9d9c89ba /src/gui/kernel/qcursor.cpp
parent2248d63c1a32ae84bb6d0bde9021a8074db1b4c9 (diff)
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.cpp4
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;