diff --git a/vorbis-tools-1.4.0-bz1185558.patch b/vorbis-tools-1.4.0-bz1185558.patch index c2e0aa6..3c8d361 100644 --- a/vorbis-tools-1.4.0-bz1185558.patch +++ b/vorbis-tools-1.4.0-bz1185558.patch @@ -3,7 +3,12 @@ From: Kamil Dudka Date: Mon, 26 Jan 2015 12:33:19 +0100 Subject: [PATCH] oggenc: do not use stack variable out of its scope of validity +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +Reported-by: Thomas Köller +Bug: https://bugzilla.redhat.com/1185558 --- oggenc/oggenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) @@ -17,7 +22,7 @@ index ea105b2..759a3ee 100644 if(opt.rawmode) { - input_format raw_format = {NULL, 0, raw_open, wav_close, "raw", -+ static input_format raw_format = {NULL, 0, raw_open, wav_close, "raw", ++ static input_format raw_format = {NULL, 0, raw_open, wav_close, "raw", N_("RAW file reader")}; enc_opts.rate=opt.raw_samplerate;