diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 5de42c0b96..55b3a59f51 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -3249,11 +3249,13 @@ Route::shift (framepos_t pos, framecnt_t frames) for (uint32_t p = 0; p < npans; ++p) { pc = _main_outs->panner()->pan_control (0, p); - boost::shared_ptr al = pc->alist(); - XMLNode& before = al->get_state (); - al->shift (pos, frames); - XMLNode& after = al->get_state (); - _session.add_command (new MementoCommand (*al.get(), &before, &after)); + if (pc) { + boost::shared_ptr al = pc->alist(); + XMLNode& before = al->get_state (); + al->shift (pos, frames); + XMLNode& after = al->get_state (); + _session.add_command (new MementoCommand (*al.get(), &before, &after)); + } } }