svn commit: r487039 - head/mail/tpop3d

Kirill Ponomarev krion at FreeBSD.org
Sun Dec 9 11:48:25 UTC 2018


Author: krion
Date: Sun Dec  9 11:48:24 2018
New Revision: 487039
URL: https://svnweb.freebsd.org/changeset/ports/487039

Log:
  Add patches to avoid accessing unallocated memory.
  
  buffer_consume_to_mark() was trying to use Boyer-Moore search to
  find specified mark string but implementation was walking through
  unallocated memory.
  
  PR:		227543
  Submitted by:	Jeremy Chadwick <jdc at koitsu.org>

Modified:
  head/mail/tpop3d/Makefile

Modified: head/mail/tpop3d/Makefile
==============================================================================
--- head/mail/tpop3d/Makefile	Sun Dec  9 11:41:32 2018	(r487038)
+++ head/mail/tpop3d/Makefile	Sun Dec  9 11:48:24 2018	(r487039)
@@ -3,14 +3,17 @@
 
 PORTNAME=	tpop3d
 PORTVERSION=	1.5.5
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	mail
 MASTER_SITES=	SAVANNAH
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Virtual-domain capable POP3 server supporting MySQL, PgSQL etc auth
 
+LICENSE=	GPLv2
+
 USES=		ssl
+
 GNU_CONFIGURE=	yes
 LDFLAGS+=	-L${LOCALBASE}/lib -lcrypto
 CONFIGURE_ARGS=	--enable-auth-other \


More information about the svn-ports-all mailing list