mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
d4c2b74afb
commit
5e75fe8836
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user