fix crash when report timer was set but no usable error reports were found.

This commit is contained in:
Campbell Barton 2010-12-02 21:40:39 +00:00
parent 3a88d96aa2
commit de0b41588a

@ -326,10 +326,13 @@ static int update_reports_display_invoke(bContext *C, wmOperator *UNUSED(op), wm
int send_note= 0;
/* escape if not our timer */
if(reports->reporttimer==NULL || reports->reporttimer != event->customdata)
if( (reports->reporttimer==NULL) ||
(reports->reporttimer != event->customdata) ||
((report= BKE_reports_last_displayable(reports))==NULL) /* may have been deleted */
) {
return OPERATOR_PASS_THROUGH;
}
report= BKE_reports_last_displayable(reports);
rti = (ReportTimerInfo *)reports->reporttimer->customdata;
timeout = (report->type & RPT_ERROR_ALL)?ERROR_TIMEOUT:INFO_TIMEOUT;