From: RĂ©mi Duraffort Date: Tue, 18 Aug 2009 17:49:53 +0000 (+0200) Subject: phonon: fix uninitialized value (Not sure if that's the right value so feel X-Git-Tag: 1.1.0-ff~4264 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6fb014aaadc709b5e8cbff89ec98a51d0ebc839e;p=vlc phonon: fix uninitialized value (Not sure if that's the right value so feel free to change the value if needed). --- diff --git a/bindings/phonon/vlc/audiooutput.cpp b/bindings/phonon/vlc/audiooutput.cpp index e06b0d6fa8..ab889ea897 100644 --- a/bindings/phonon/vlc/audiooutput.cpp +++ b/bindings/phonon/vlc/audiooutput.cpp @@ -35,6 +35,7 @@ namespace VLC { AudioOutput::AudioOutput(Backend *p_back, QObject * p_parent) : SinkNode(p_parent), f_volume(1.0), + i_device(0), p_backend(p_back) { p_media_object = 0;