fix bug in Locations::ripple()

This commit is contained in:
Paul Davis 2021-05-28 17:42:02 -06:00
parent 9766132a53
commit c8c506f702
1 changed files with 1 additions and 1 deletions

View File

@ -1618,7 +1618,7 @@ Locations::ripple (samplepos_t at, samplecnt_t distance, bool include_locked, bo
{
Glib::Threads::RWLock::WriterLock lm (_lock);
for (LocationList::iterator i = locations.begin(); i != locations.end(); ) {
for (LocationList::iterator i = locations.begin(); i != locations.end(); ++i) {
if (!include_locked && (*i)->locked()) {
continue;