13
0

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:
Carl Hetherington 2011-02-06 18:32:22 +00:00
parent e0f4bba2d5
commit 674ed2430c

View File

@ -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;