mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
Couple of asserts to catch similar bugs to #3755 a bit earlier.
git-svn-id: svn://localhost/ardour2/branches/3.0@8728 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e0f4bba2d5
commit
674ed2430c
1 changed files with 4 additions and 1 deletions
|
|
@ -1167,6 +1167,8 @@ AudioDiskstream::_do_refill (Sample* mixdown_buffer, float* gain_buffer)
|
|||
to_read = min (ts, len1);
|
||||
to_read = min (to_read, disk_io_chunk_frames);
|
||||
|
||||
assert (to_read >= 0);
|
||||
|
||||
if (to_read) {
|
||||
|
||||
if (read (buf1, mixdown_buffer, gain_buffer, file_frame_tmp, to_read, chan, chan_n, reversed)) {
|
||||
|
|
@ -1201,7 +1203,8 @@ AudioDiskstream::_do_refill (Sample* mixdown_buffer, float* gain_buffer)
|
|||
}
|
||||
|
||||
file_frame = file_frame_tmp;
|
||||
|
||||
assert (file_frame >= 0);
|
||||
|
||||
out:
|
||||
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue