Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P1: Critical
-
Resolution: Fixed
-
Affects Version/s: 5.13.0
-
Fix Version/s: 5.12.4, 5.13.1, 5.14.0 Alpha
-
Component/s: GUI: Accessibility (a11y)
-
Labels:None
-
Platform/s:
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
-