summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-27 22:09:38 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-27 22:09:38 +0100
commiteec17fe051e1b2baac8d5755f2feb9bff2358640 (patch)
treeb56eb91555731a32fda9706a25398c066f912976
parent3b3195677662ff1ae89644d3d42319a080e22e19 (diff)
downloadODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.tar.gz
ODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.tar.bz2
ODR-AudioEnc-eec17fe051e1b2baac8d5755f2feb9bff2358640.zip
Ensure m_mp init for VLC input
-rw-r--r--src/VLCInput.h3
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(); }