Commit 265371e9 authored by Rémi Duraffort's avatar Rémi Duraffort

bda: fix potential uninitialized value.

parent ff865bf4
......@@ -426,7 +426,8 @@ int BDAGraph::SubmitDVBCTuneRequest()
IDVBCLocator* p_dvbc_locator;
IDVBTuningSpace2* p_dvb_tuning_space;
localComPtr(): p_dvbc_tune_request(NULL), p_dvbc_locator(NULL) {};
localComPtr(): p_dvbc_tune_request(NULL), p_dvbc_locator(NULL),
p_dvb_tuning_space(NULL) {};
~localComPtr()
{
if( p_dvbc_tune_request )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment