From de0b41588ae34962f66b6dc35010a613bb311423 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 2 Dec 2010 21:40:39 +0000 Subject: fix crash when report timer was set but no usable error reports were found. --- source/blender/editors/space_info/info_ops.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source') diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c index 7eb7cc55bc1..6ffbf1455e4 100644 --- a/source/blender/editors/space_info/info_ops.c +++ b/source/blender/editors/space_info/info_ops.c @@ -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; -- cgit v1.2.3