qt5base-lts/tests/auto/widgets/dialogs
Carl Schumann a70b8d407e Fix bug when destruction fields in QWizard
Maintain the consistency of QWizardPrivate's two members:
    QVector<QWizardField> fields;
    QMap<QString, int> fieldIndexMap;
during and after calls to QWizardPrivate's
void _q_handleFieldObjectDestroyed(QObject *)
member function.  The failure to maintain this consistency
caused an out of bounds access and core dump in
QWizard's field(const QString &name) member function.

QWizard's field(const QString &name) member function expects
the values in the QMap fieldIndexMap to be indexes into the
QVector fields.  Prior to this change
_q_handleFieldObjectDestroyed only removed the appropriate
entry from the map and erased it from the vector.  It did
not decrement by one all the indexes greater than the index
that was removed from the map and erased from the vector
in the rest of the map.

For example ...
So if initially have the following mapping ...
"field0" -> 0,
"field1" -> 1, and
"field2" -> 2
with fields of size 3. After destruction of "field1" have ...
"field0" -> 0, and
"field2" -> 2
with fields of size 2.
Now attempts to look up "field2" using QWizard::field will
have an out of bounds error and possibly core dump or trigger
an internal Qt assert because an attempt to access
this->fields[2] will be made.   It should be accessing
this->fields[1], but does not because the map is no longer
consistent with the vector.

This change adds a decrement by one for all the indexes
greater than the index that was removed from the map and
erased from the vector.

Task-number: QTBUG-25691
Change-Id: Ia2a41027628a65faec4ecdd5da235ddd19746a57
Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
2012-05-16 22:03:30 +02:00
..
qabstractprintdialog Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
qcolordialog Cocoa: fix setting color with alpha channel value for color dialog 2012-03-22 13:22:10 +01:00
qdialog Improve widget geometry. 2012-05-09 13:40:16 +02:00
qerrormessage clean up qmake-generated projects 2012-02-24 05:18:30 +01:00
qfiledialog Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtWidgets] 2012-05-03 06:10:20 +02:00
qfiledialog2 Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtWidgets] 2012-05-03 06:10:20 +02:00
qfilesystemmodel Deprecate qMemCopy/qMemSet in favour of their stdlib equivilents. 2012-04-11 10:46:19 +02:00
qfontdialog Respect the DontUseNativeDialog flag. 2012-04-27 05:51:14 +02:00
qinputdialog Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtWidgets] 2012-05-03 06:10:20 +02:00
qmessagebox Expose QPA API under qpa/* 2012-05-07 20:25:24 +02:00
qprogressdialog Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
qsidebar Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
qwizard Fix bug when destruction fields in QWizard 2012-05-16 22:03:30 +02:00
dialogs.pro Skip tst_QInputDialog on Mac OS X 2012-04-25 14:58:36 +02:00