GLWidget: disconnect during destruction and cleanup

The GLWidget instance cleans up its data structures when the OpenGL
context is about to be destroyed, but the context might be destroyed as
part of destroying the GLWidget (typically when the QOpenGLWidget
destructor runs).
To prevent that the cleanup() function gets called after the GLWidget
destructor has run (which triggers the assert in QObject), disconnect
explicitly.

The crash reproduces with any of the tests using a QAbstractSeries
implementation when the useOpenGL property is set, so add a data-row
to one of them that provokes the assert without the fix.

Fixes: QTBUG-119900
Pick-to: 6.7 6.6 6.5
Change-Id: Ib4badd0c5df68ed60df6f492cada7954f0cb220a
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
This commit is contained in:
Volker Hilsheimer 2023-12-11 17:55:06 +01:00
parent d064dbf2d1
commit 5c4ddaae03
2 changed files with 7 additions and 0 deletions

View File

@ -77,6 +77,8 @@ void GLWidget::cleanup()
m_seriesBufferMap.clear();
doneCurrent();
context()->disconnect(this);
}
void GLWidget::cleanXYSeriesResources(const QXYSeries *series)

View File

@ -50,12 +50,17 @@ void tst_QLineSeries::cleanup()
void tst_QLineSeries::qlineseries_data()
{
QTest::addColumn<bool>("useOpenGL");
QTest::addRow("Without OpenGL") << false;
QTest::addRow("With OpenGL") << true;
}
void tst_QLineSeries::qlineseries()
{
QFETCH(const bool, useOpenGL);
QLineSeries series;
series.setUseOpenGL(useOpenGL);
QCOMPARE(series.count(),0);
QCOMPARE(series.brush(), QBrush());