Fix OSCAR crash when session not found in Journal file

While preparing bookmark HTML for right sidebar, OSCAR was trying to obtain
the first MT_JOURNAL session, but was finding a null pointer and then not checking
that the pointer was null. However, I don't know under what conditions this
situation could happen in the database.  At least now it won't crash OSCAR.
This commit is contained in:
Guy Scharf 2020-11-03 14:50:04 -07:00
parent d4c2b74afb
commit 5e75fe8836

View File

@ -1197,6 +1197,7 @@ void MainWindow::updateFavourites()
if (journal) {
if (journal->size() > 0) {
Session *sess = journal->firstSession(MT_JOURNAL);
if (sess) {
QString tmp;
bool filtered = !bookmarkFilter.isEmpty();
bool found = !filtered;
@ -1231,6 +1232,7 @@ void MainWindow::updateFavourites()
if (found) { html += tmp; }
}
}
}
date = date.addDays(-1);
} while (date >= p_profile->FirstDay(MT_JOURNAL));