9d607028bc
- Add initialize-soundfile-format.patch to initilalize a variable so it's not used later uninitialized. OBS-URL: https://build.opensuse.org/request/show/501845 OBS-URL: https://build.opensuse.org/package/show/games:tools/mumble?expand=0&rev=95
13 lines
401 B
Diff
13 lines
401 B
Diff
Index: mumble-1.2.19/src/mumble/AudioOutputSample.cpp
|
|
===================================================================
|
|
--- mumble-1.2.19.orig/src/mumble/AudioOutputSample.cpp
|
|
+++ mumble-1.2.19/src/mumble/AudioOutputSample.cpp
|
|
@@ -41,6 +41,7 @@ SoundFile::SoundFile(const QString &fnam
|
|
siInfo.samplerate = 0;
|
|
siInfo.sections = 0;
|
|
siInfo.seekable = 0;
|
|
+ siInfo.format = 0;
|
|
|
|
sfFile = NULL;
|
|
|