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

Crash inside QAccessibleTableCell::state

    XMLWordPrintable

Details

    • Windows

    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

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

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes