vlc | branch: master | Hannes Domani <[email protected]> | Fri Jul 24 16:59:51 2015 +0200| [c5664c66c44f1081f80db06895b2fc8f6246b04e] | committer: Jean-Baptiste Kempf
Qt: fix uninitialized members Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c5664c66c44f1081f80db06895b2fc8f6246b04e --- modules/gui/qt4/components/open_panels.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp index 9e89780..6625a5c 100644 --- a/modules/gui/qt4/components/open_panels.cpp +++ b/modules/gui/qt4/components/open_panels.cpp @@ -723,6 +723,10 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : OpenPanel( _parent, _p_intf ) { isInitialized = false; +#ifdef _WIN32 + vdevDshowW = NULL; + adevDshowW = NULL; +#endif } void CaptureOpenPanel::initialize() _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
