diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-11-18 04:13:59 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-11-18 04:13:59 +0100 |
commit | 9c8e72ce7d0bb7324784ff9d3235675827cbe2d2 (patch) | |
tree | cca2df8b0952c3e52c0c1ec497e796096e52c641 /src/JackInput.h | |
parent | 193ddda4c37f64c04764279d34ebd37231b045fc (diff) | |
download | ODR-AudioEnc-9c8e72ce7d0bb7324784ff9d3235675827cbe2d2.tar.gz ODR-AudioEnc-9c8e72ce7d0bb7324784ff9d3235675827cbe2d2.tar.bz2 ODR-AudioEnc-9c8e72ce7d0bb7324784ff9d3235675827cbe2d2.zip |
Properly initialise JACK input fault field
Diffstat (limited to 'src/JackInput.h')
-rw-r--r-- | src/JackInput.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/JackInput.h b/src/JackInput.h index d5e2bcf..5939d03 100644 --- a/src/JackInput.h +++ b/src/JackInput.h @@ -82,8 +82,7 @@ class JackInput : public InputInterface m_fault = true; } - bool m_fault; - bool m_running; + bool m_fault = false; SampleQueue<uint8_t>& m_queue; |