Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
5.13.0
-
None
Description
qtbase\src\widgets\accessible\itemviews.cpp
QAccessibleTableCell::state()
if member 'm_index' is not valid, 'm_index.model()' is nullptr, causing a crash in the method.
The problem can be solved by replacing at the function entry:
if (!view) return st;
with
if (!view || !m_index.isValid()) return st;
Attachments
Issue Links
- duplicates
-
QTBUG-71608 Crash in Qt5 on Ubuntu 16.04 in QAccessibleTableCell::state while in endResetModel() in a QAbstractTableModel
- Closed