From 2bfefb453088b88987f07f862fab134359adc5f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz?= Date: Fri, 27 Sep 2019 20:07:40 +0200 Subject: vars/build.vars:libflac: updated to v1.3.3 (via Redfoxmoon.) vars/build.vars:libogg: updated to v1.3.4 (via Redfoxmoon.) patches/libflac/CVE-2017-6888.patch: removes obsolete patch (via Redfoxmoon.) --- patches/libflac/CVE-2017-6888.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 patches/libflac/CVE-2017-6888.patch (limited to 'patches/libflac/CVE-2017-6888.patch') diff --git a/patches/libflac/CVE-2017-6888.patch b/patches/libflac/CVE-2017-6888.patch deleted file mode 100644 index 7c829be9..00000000 --- a/patches/libflac/CVE-2017-6888.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 4f47b63e9c971e6391590caf00a0f2a5ed612e67 Mon Sep 17 00:00:00 2001 -From: Erik de Castro Lopo -Date: Sat, 8 Apr 2017 18:34:49 +1000 -Subject: [PATCH] stream_decoder.c: Fix a memory leak - -Leak reported by Secunia Research. ---- - src/libFLAC/stream_decoder.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/stream_decoder.c -index 14d5fe7..a552751 100644 ---- a/src/libFLAC/stream_decoder.c -+++ b/src/libFLAC/stream_decoder.c -@@ -1753,6 +1753,9 @@ FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__Stre - } - memset (obj->comments[i].entry, 0, obj->comments[i].length) ; - if (!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, obj->comments[i].entry, obj->comments[i].length)) { -+ /* Current i-th entry is bad, so we delete it. */ -+ free (obj->comments[i].entry) ; -+ obj->comments[i].entry = NULL ; - obj->num_comments = i; - goto skip; - } --- -2.1.4 - -- cgit v1.2.3