diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 1b1f1189d7..5d5050103c 100755 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -256,6 +256,14 @@ BOOL LLFastTimerView::handleHover(S32 x, S32 y, MASK mask) bar_index < end_index; ++bar_index) { + // FIRE-14600: mBars might be null here + if (!row.mBars) + { + LL_WARNS() << "Skipping null row bars" << LL_ENDL; + continue; + } + // + TimerBar& bar = row.mBars[bar_index]; if (bar.mSelfStart > mouse_time_offset) {