diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-27 22:09:38 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-27 22:09:38 +0100 |
commit | eec17fe051e1b2baac8d5755f2feb9bff2358640 (patch) | |
tree | b56eb91555731a32fda9706a25398c066f912976 /src/VLCInput.h | |
parent | 3b3195677662ff1ae89644d3d42319a080e22e19 (diff) | |
download | ODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.tar.gz ODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.tar.bz2 ODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.zip |
Ensure m_mp init for VLC input
Diffstat (limited to 'src/VLCInput.h')
-rw-r--r-- | src/VLCInput.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h index 326c6cd..f5503e7 100644 --- a/src/VLCInput.h +++ b/src/VLCInput.h @@ -53,7 +53,8 @@ class VLCInput m_rate(rate), m_cache(cache), m_gain(gain), - m_vlc(NULL) { } + m_vlc(nullptr), + m_mp(nullptr) { } ~VLCInput() { cleanup(); } |