Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-77374

Crash inside QAccessibleTableCell::state

XMLWordPrintable

    • Windows

      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;
      

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

            frederik Frederik Gladhorn
            jirauser26727 user-04d21 (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes