diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2017-02-26 08:34:35 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2017-02-26 08:34:35 +0000 |
commit | 201605ea86b5eb884b003558e78b5e77aefae7c4 (patch) | |
tree | 888820467f23aaa463fab8dffcfc0d8a13d74491 /audio | |
parent | 87a1412b5ad79d50b9d92daf9c6ebf3578682f4f (diff) | |
download | freebsd-ports-201605ea86b5eb884b003558e78b5e77aefae7c4.zip |
Update to upstream version 0.20.5; fixes buffer overflows in http output
MFH: 2017Q1
Diffstat (limited to 'audio')
-rw-r--r-- | audio/musicpd/Makefile | 2 | ||||
-rw-r--r-- | audio/musicpd/distinfo | 6 | ||||
-rw-r--r-- | audio/musicpd/files/patch-src_decoder_plugins_WavpackDecoderPlugin.cxx | 11 |
3 files changed, 15 insertions, 4 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index c95c700fc383..51589ff0120f 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= musicpd -PORTVERSION= 0.20.4 +PORTVERSION= 0.20.5 CATEGORIES= audio ipv6 MASTER_SITES= http://www.musicpd.org/download/mpd/${PORTVERSION:R}/ DISTNAME= mpd-${PORTVERSION} diff --git a/audio/musicpd/distinfo b/audio/musicpd/distinfo index 7aa61e620036..28290193ee6b 100644 --- a/audio/musicpd/distinfo +++ b/audio/musicpd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1486630981 -SHA256 (mpd-0.20.4.tar.xz) = 712b25351c12616630c580204e1c3dcba3ae2993a56cff1c346c87e334d69728 -SIZE (mpd-0.20.4.tar.xz) = 770132 +TIMESTAMP = 1488034173 +SHA256 (mpd-0.20.5.tar.xz) = 525573be27443ae26868b21a61e88c03909e72f1212ddaa725a0389a28d88987 +SIZE (mpd-0.20.5.tar.xz) = 771276 diff --git a/audio/musicpd/files/patch-src_decoder_plugins_WavpackDecoderPlugin.cxx b/audio/musicpd/files/patch-src_decoder_plugins_WavpackDecoderPlugin.cxx new file mode 100644 index 000000000000..356f39ec3499 --- /dev/null +++ b/audio/musicpd/files/patch-src_decoder_plugins_WavpackDecoderPlugin.cxx @@ -0,0 +1,11 @@ +--- src/decoder/plugins/WavpackDecoderPlugin.cxx.orig 2017-01-27 07:46:51 UTC ++++ src/decoder/plugins/WavpackDecoderPlugin.cxx +@@ -34,6 +34,8 @@ + #include <stdexcept> + #include <memory> + ++#include <cstdlib> ++ + #include <assert.h> + + #define ERRORLEN 80 |