Commit c554f334 authored by Viktor Engelmann's avatar Viktor Engelmann Committed by Michael Brüning
Browse files

Delegate QWebEngineHistory::currentItem() to itemAt()


Calling QWebEngineHistory::currentItem() before the first item is
inserted, caused a segfault, due to accessing an illegal QList index.
We now delegate the lookup to QWebEngineHistory::itemAt(), which checks
the index first and returns a dummy element in case of an illegal
index.

Task-number: QTBUG-59599
Change-Id: I9cdd2533e33415a7b812c29fff5429eb005020dc
Reviewed-by: default avatarMichael Brüning <michael.bruning@qt.io>
Showing with 1 addition and 3 deletions
......@@ -226,9 +226,7 @@ QWebEngineHistoryItem QWebEngineHistory::backItem() const
QWebEngineHistoryItem QWebEngineHistory::currentItem() const
{
Q_D(const QWebEngineHistory);
d->updateItems();
return d->items[currentItemIndex()];
return itemAt(currentItemIndex());
}
QWebEngineHistoryItem QWebEngineHistory::forwardItem() const
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment