Date: Thu, 7 Mar 2019 19:28:31 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494992 - in head/devel/sope3: . files Message-ID: <201903071928.x27JSVK7018083@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Thu Mar 7 19:28:30 2019 New Revision: 494992 URL: https://svnweb.freebsd.org/changeset/ports/494992 Log: - Fix problem with latest version of gnustep-base PR: 236310 Submitted by: romain Obtained from: https://sogo.nu/bugs/view.php?id=4659 Added: head/devel/sope3/files/patch-sope-mime-NGMail_NGMailAddressParser.m (contents, props changed) Modified: head/devel/sope3/Makefile Modified: head/devel/sope3/Makefile ============================================================================== --- head/devel/sope3/Makefile Thu Mar 7 19:27:31 2019 (r494991) +++ head/devel/sope3/Makefile Thu Mar 7 19:28:30 2019 (r494992) @@ -3,7 +3,7 @@ PORTNAME= sope3 PORTVERSION= 3.2.10 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel gnustep MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/ DISTNAME= SOPE-${PORTVERSION} Added: head/devel/sope3/files/patch-sope-mime-NGMail_NGMailAddressParser.m ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sope3/files/patch-sope-mime-NGMail_NGMailAddressParser.m Thu Mar 7 19:28:30 2019 (r494992) @@ -0,0 +1,12 @@ +--- sope-mime/NGMail/NGMailAddressParser.m 2019-03-07 19:04:29.174101000 +0000 ++++ sope-mime/NGMail/NGMailAddressParser.m 2019-03-07 19:05:10.004206000 +0000 +@@ -382,6 +382,9 @@ + + NSUInteger addrStart, addrEnd, commaPos; + ++ if (!originalAddress) ++ return nil; ++ + whitespace = [NSCharacterSet whitespaceAndNewlineCharacterSet]; + addressList = [NSMutableArray arrayWithCapacity: 1]; + remainder = [NSMutableString stringWithString: originalAddress];
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903071928.x27JSVK7018083>