1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Fixed crash when clearing history.

To reproduce the issue:
* clear your browsing history via the ui - do not close the browser
* start navigating pages, so that new items get inserted into the
* history model.
-> will crash as m_todayItem got deleted but not recreated, as it was
not NULLed.
This commit is contained in:
Franz Fellner 2012-11-20 09:49:23 +01:00 committed by nowrep
parent c3f0e9164f
commit 7eaa2d11e0

View File

@ -264,6 +264,7 @@ void HistoryModel::resetHistory()
beginResetModel();
delete m_rootItem;
m_todayItem = 0;
m_rootItem = new HistoryItem(0);
init();