diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2019-09-27 20:07:40 +0200 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2019-09-27 20:07:40 +0200 |
commit | 2bfefb453088b88987f07f862fab134359adc5f5 (patch) | |
tree | 6926bfa94bb2b0915ed7d802638b3214cc1d039e /patches | |
parent | ae1567a578989587c3ee8a5db4e549c8f7af6e93 (diff) | |
download | midipix_build-2bfefb453088b88987f07f862fab134359adc5f5.tar.bz2 midipix_build-2bfefb453088b88987f07f862fab134359adc5f5.tar.xz |
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.)
Diffstat (limited to 'patches')
-rw-r--r-- | patches/libflac/CVE-2017-6888.patch | 27 |
1 files changed, 0 insertions, 27 deletions
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 <erikd@mega-nerd.com> -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 - |