diff options
author | José María Alonso <nimiux@gentoo.org> | 2013-01-21 20:44:37 +0000 |
---|---|---|
committer | José María Alonso <nimiux@gentoo.org> | 2013-01-21 20:44:37 +0000 |
commit | 55224d460b74688a88ba1a8d214c730ba3bf475e (patch) | |
tree | 41fe486e9183a1a496e790da8d1671e88f04e162 /app-emulation/free42 | |
parent | Another tweak for the fstab check. (diff) | |
download | gentoo-2-55224d460b74688a88ba1a8d214c730ba3bf475e.tar.gz gentoo-2-55224d460b74688a88ba1a8d214c730ba3bf475e.tar.bz2 gentoo-2-55224d460b74688a88ba1a8d214c730ba3bf475e.zip |
Add fix to avoid array subscript above bounds
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key D628E536)
Diffstat (limited to 'app-emulation/free42')
-rw-r--r-- | app-emulation/free42/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/free42/free42-1.4.77.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app-emulation/free42/ChangeLog b/app-emulation/free42/ChangeLog index 76bae8c07bd9..110eba45036a 100644 --- a/app-emulation/free42/ChangeLog +++ b/app-emulation/free42/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/free42 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/ChangeLog,v 1.14 2013/01/21 19:30:38 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/ChangeLog,v 1.15 2013/01/21 20:44:37 nimiux Exp $ + + 21 Jan 2013; Chema Alonso <nimiux@gentoo.org> free42-1.4.77.ebuild: + Add fix to avoid array subscript above bounds. Reported upstream 21 Jan 2013; Chema Alonso <nimiux@gentoo.org> -free42-1.4.74.ebuild: Drop old version diff --git a/app-emulation/free42/free42-1.4.77.ebuild b/app-emulation/free42/free42-1.4.77.ebuild index e7704aa1caa0..562c47ba1689 100644 --- a/app-emulation/free42/free42-1.4.77.ebuild +++ b/app-emulation/free42/free42-1.4.77.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/free42-1.4.77.ebuild,v 1.1 2013/01/21 19:10:55 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/free42/free42-1.4.77.ebuild,v 1.2 2013/01/21 20:44:37 nimiux Exp $ EAPI=4 @@ -29,6 +29,8 @@ RDEPEND="${DEPEND} S="${WORKDIR}/${PN}-nologo-${PV}" src_prepare() { + sed -i -e 's/print_gif_name\[FILENAMELEN\]/print_gif_name\[1000\]/' \ + "${S}/gtk/shell_main.cc" || die epatch "${FILESDIR}"/${P}-fix-makefile.patch epatch "${FILESDIR}"/${P}-fix-alsa.patch } |