commit: fd9b596cf9e8a8efb5dbb0041496b45fbe8249fd Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com> AuthorDate: Mon Jan 18 19:45:47 2016 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Mon Jan 18 20:48:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd9b596c
media-video/mpv: revbump to 0.15.0-r1 to fix null pointer dereference Upstream issue: https://github.com/mpv-player/mpv/issues/2729 Package-Manager: portage-2.2.26 .../mpv-0.15.0-fix-null-pointer-dereference.patch | 21 +++++++++++++++++++++ .../mpv/{mpv-0.15.0.ebuild => mpv-0.15.0-r1.ebuild} | 2 ++ 2 files changed, 23 insertions(+) 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 index 0000000..4cc4c87 --- /dev/null +++ b/media-video/mpv/files/mpv-0.15.0-fix-null-pointer-dereference.patch @@ -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); + } + diff --git a/media-video/mpv/mpv-0.15.0.ebuild b/media-video/mpv/mpv-0.15.0-r1.ebuild 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 b6a0297..ca974a9 100644 --- a/media-video/mpv/mpv-0.15.0.ebuild +++ b/media-video/mpv/mpv-0.15.0-r1.ebuild @@ -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 }
