Skip to content

Fix infinite loop in mEventViewer->setIncidence due to invalid date

David Faure requested to merge wip/dfaure/fix_infinite_loop into release/23.08

CalendarView::showIncidenceByUid called mEventViewer->setIncidence(item); i.e. it didn't pass the second argument, the QDate. So d->mDate was an invalid date, and then incidence.cpp:654 would loop forever using that invalid date.

Merge request reports