mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 00:13:10 +01:00
Catch issues with invalid region vs. source length
e.g. the session from https://tracker.ardour.org/view.php?id=9704#c28732
This commit is contained in:
parent
caae3501ec
commit
aa55bf35eb
1 changed files with 1 additions and 0 deletions
|
|
@ -2668,6 +2668,7 @@ Playlist::relayer ()
|
|||
}
|
||||
|
||||
assert (divisions == 0 || end_division < divisions);
|
||||
assert (start_division >= 0 && end_division >= start_division);
|
||||
|
||||
/* find the lowest layer that this region can go on */
|
||||
size_t j = layers.size ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue