diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc index ae2f1a59a4..cc33d6959a 100644 --- a/gtk2_ardour/sfdb_ui.cc +++ b/gtk2_ardour/sfdb_ui.cc @@ -322,7 +322,9 @@ bool SoundFileBox::seek_button_release (GdkEventButton*) { _seeking = false; - _session->the_auditioner()->seek_to_percent(seek_slider.get_value() / 10.0); + if (_session->the_auditioner()) { + _session->the_auditioner()->seek_to_percent(seek_slider.get_value() / 10.0); + } seek_slider.set_sensitive (false); return false; // pass on to slider }