mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
fix uninitialized variables causing DiskWriters to think they were in some incorrect state(s)
This commit is contained in:
parent
5160e97d24
commit
68af6c5bd7
1 changed files with 4 additions and 1 deletions
|
|
@ -45,7 +45,10 @@ PBD::Signal0<void> DiskWriter::Overrun;
|
|||
|
||||
DiskWriter::DiskWriter (Session& s, string const & str, DiskIOProcessor::Flag f)
|
||||
: DiskIOProcessor (s, str, f)
|
||||
, capture_start_frame (0)
|
||||
, _input_latency (0)
|
||||
, _record_enabled (0)
|
||||
, _record_safe (0)
|
||||
, capture_start_frame (0)
|
||||
, capture_captured (0)
|
||||
, was_recording (false)
|
||||
, adjust_capture_position (0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue