summaryrefslogtreecommitdiffstats
path: root/tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-06-30 18:49:57 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-07-01 10:03:57 +0200
commitfb55e1e71e3c98aca880c23d97f9e811e2b406a0 (patch)
treee7543c1df9f17f59bc8430776ad35a454e52bb54 /tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp
parenta0468331761b497992e9d554c210583781308272 (diff)
Sql: Fix heap-user-after-free for globally initialized db objects
Becaues the database objects were created as globals, there was a possible use-after-free issue when deleting the objects on application exit. Move the initialization of the database objects into static variables inside the test constructor. As a drive-by, also add one missing test to the CMake projects. Fixes: QTBUG-85357 Change-Id: I2c8f2c5daee96bb9d1d21dae37950a2da5ffdf27 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp')
-rw-r--r--tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp b/tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp
index 44dd4a74cf..81dcaa0975 100644
--- a/tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp
+++ b/tests/auto/sql/models/qsqltablemodel/tst_qsqltablemodel.cpp
@@ -34,9 +34,9 @@
#include <QThread>
#include <QElapsedTimer>
-const QString test(qTableName("test", __FILE__, QSqlDatabase())),
- test2(qTableName("test2", __FILE__, QSqlDatabase())),
- test3(qTableName("test3", __FILE__, QSqlDatabase()));
+QString test;
+QString test2;
+QString test3;
// In order to catch when the warning message occurs, indicating that the database belongs to another
// thread, we have to install our own message handler. To ensure that the test reporting still happens
@@ -164,6 +164,15 @@ private:
tst_QSqlTableModel::tst_QSqlTableModel()
{
+ static QSqlDatabase static_qtest_db_1 = QSqlDatabase();
+ test = qTableName("test1", __FILE__, static_qtest_db_1);
+
+ static QSqlDatabase static_qtest_db_2 = QSqlDatabase();
+ test2 = qTableName("test2", __FILE__, static_qtest_db_2);
+
+ static QSqlDatabase static_qtest_db_3 = QSqlDatabase();
+ test3 = qTableName("test3", __FILE__, static_qtest_db_3);
+
QVERIFY(dbs.open());
}