diff options
author | eugen <eugen@FreeBSD.org> | 2018-06-30 08:49:19 +0800 |
---|---|---|
committer | eugen <eugen@FreeBSD.org> | 2018-06-30 08:49:19 +0800 |
commit | 9989a4d32c6cc82402bdf94ad0fdcdc35a8e3c07 (patch) | |
tree | 08c83de66c029fc5ff9da045f3844b9775054ee5 /news | |
parent | 499fcc46565c17e69f372d097a0c2081b82c9f0f (diff) | |
download | freebsd-ports-gnome-9989a4d32c6cc82402bdf94ad0fdcdc35a8e3c07.tar.gz freebsd-ports-gnome-9989a4d32c6cc82402bdf94ad0fdcdc35a8e3c07.tar.zst freebsd-ports-gnome-9989a4d32c6cc82402bdf94ad0fdcdc35a8e3c07.zip |
news/slrn: fix crash with SIGSERV in the iconv_convert_string()
Back out r349278 that added --with-non-gnu-iconv trying to solve
our early iconv() inconsistences that are not actual anymore
as it now now correctly returns non-zero count of convertable symbols.
This fixes unsigned underflow in the slrn code turning
negative value to large positive leading to incorrect memory accesses later.
PR: 228502
Approved by: johans (maintainer timeout, 1 month)
Diffstat (limited to 'news')
-rw-r--r-- | news/slrn/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/news/slrn/Makefile b/news/slrn/Makefile index e9b4a0c2b4df..c3c730f8deff 100644 --- a/news/slrn/Makefile +++ b/news/slrn/Makefile @@ -3,6 +3,7 @@ PORTNAME= slrn PORTVERSION= 1.0.3a +PORTREVISION= 1 CATEGORIES= news ipv6 MASTER_SITES= http://www.jedsoft.org/releases/slrn/ @@ -19,7 +20,7 @@ USES= gmake iconv tar:bz2 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--disable-inews --with-slrnpull \ - --with-non-gnu-iconv ${ICONV_CONFIGURE_ARG} + ${ICONV_CONFIGURE_ARG} ALL_TARGET= all WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/[a-z]$//} |