media-video/mpv: revbump to 0.15.0-r1 to fix null pointer dereference
authorIlya Tumaykin <itumaykin@gmail.com>
Mon, 18 Jan 2016 19:45:47 +0000 (22:45 +0300)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 18 Jan 2016 20:48:12 +0000 (20:48 +0000)
Upstream issue: https://github.com/mpv-player/mpv/issues/2729

Package-Manager: portage-2.2.26

media-video/mpv/files/mpv-0.15.0-fix-null-pointer-dereference.patch [new file with mode: 0644]
media-video/mpv/mpv-0.15.0-r1.ebuild [moved from media-video/mpv/mpv-0.15.0.ebuild with 99% similarity]

diff --git a/media-video/mpv/files/mpv-0.15.0-fix-null-pointer-dereference.patch b/media-video/mpv/files/mpv-0.15.0-fix-null-pointer-dereference.patch
new file mode 100644 (file)
index 0000000..4cc4c87
--- /dev/null
@@ -0,0 +1,21 @@
+commit 5053f4cc3f48538c3d9a3ba13dc98442f3302052
+Author: wm4 <wm4@nowhere>
+Date:   Mon Jan 18 20:10:28 2016 +0100
+
+    command: fix NULL pointer deref in "video-codec" property
+    
+    Fixes #2729.
+
+diff --git a/player/command.c b/player/command.c
+index 3c7cfb2..413349d 100644
+--- a/player/command.c
++++ b/player/command.c
+@@ -2438,7 +2438,7 @@ static int mp_property_video_codec(void *ctx, struct m_property *prop,
+ {
+     MPContext *mpctx = ctx;
+     struct track *track = mpctx->current_track[0][STREAM_VIDEO];
+-    const char *c = track->d_video ? track->d_video->decoder_desc : NULL;
++    const char *c = track && track->d_video ? track->d_video->decoder_desc : NULL;
+     return m_property_strdup_ro(action, arg, c);
+ }
+
similarity index 99%
rename from media-video/mpv/mpv-0.15.0.ebuild
rename to media-video/mpv/mpv-0.15.0-r1.ebuild
index b6a029730825cf589df8d4030718f1344af5e183..ca974a9bd28650b938c4e5a34ce80794c4f9082f 100644 (file)
@@ -161,6 +161,8 @@ pkg_pretend() {
 src_prepare() {
        cp "${DISTDIR}/waf-${WAF_PV}" "${S}"/waf || die
        chmod +x "${S}"/waf || die
+
+       epatch "${FILESDIR}/${P}-fix-null-pointer-dereference.patch"
        epatch_user
 }