Date: Sat, 30 Jun 2018 00:49:19 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473592 - head/news/slrn Message-ID: <201806300049.w5U0nJtf034880@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Sat Jun 30 00:49:19 2018 New Revision: 473592 URL: https://svnweb.freebsd.org/changeset/ports/473592 Log: 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) Modified: head/news/slrn/Makefile Modified: head/news/slrn/Makefile ============================================================================== --- head/news/slrn/Makefile Fri Jun 29 22:45:57 2018 (r473591) +++ head/news/slrn/Makefile Sat Jun 30 00:49:19 2018 (r473592) @@ -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]$//}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806300049.w5U0nJtf034880>