[vlc-devel] commit: bda: fix potential uninitialized value. ( Rémi Duraffort )

git version control git at videolan.org
Thu Mar 12 13:36:04 CET 2009


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Wed Mar 11 14:04:43 2009 +0100| [265371e9bed0f801a8580f48cfc5f756665ebd6a] | committer: Rémi Duraffort 

bda: fix potential uninitialized value.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=265371e9bed0f801a8580f48cfc5f756665ebd6a
---

 modules/access/bda/bdagraph.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/access/bda/bdagraph.cpp b/modules/access/bda/bdagraph.cpp
index 7585f30..fc656cc 100644
--- a/modules/access/bda/bdagraph.cpp
+++ b/modules/access/bda/bdagraph.cpp
@@ -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 )




More information about the vlc-devel mailing list