From 63f86b13145f466c22688ae36254bd460cf77855 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 14 Nov 2016 16:47:09 +0100 Subject: [PATCH] Later code depends on prev_t not being NULL, use an assert() --- libs/ardour/tempo.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc index 1481f40bc9..d800eb6f60 100644 --- a/libs/ardour/tempo.cc +++ b/libs/ardour/tempo.cc @@ -3260,7 +3260,9 @@ TempoMap::gui_dilate_tempo (TempoSection* ts, const framepos_t& frame, const fra TempoSection* prev_to_prev_t = 0; const frameoffset_t fr_off = end_frame - frame; - if (prev_t && prev_t->pulse() > 0.0) { + assert (prev_t); + + if (prev_t->pulse() > 0.0) { prev_to_prev_t = const_cast(&tempo_section_at_minute_locked (future_map, minute_at_frame (prev_t->frame() - 1))); } -- 2.30.2