From 44621270716bbe7fc87f07ef234af1fa7ef9aaf6 Mon Sep 17 00:00:00 2001 From: wxs Date: Tue, 8 Sep 2009 15:12:21 +0000 Subject: - Add a patch to fix segfault on startup. PR: ports/137972 Submitted by: Christian Ludwig Approved by: Corey Halpin (maintainer) --- mail/fetchmail/Makefile | 1 + mail/fetchmail/files/patch-socket.c | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 mail/fetchmail/files/patch-socket.c (limited to 'mail/fetchmail') diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 262f84c91f4f..b9c497a97431 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -11,6 +11,7 @@ PORTNAME= fetchmail PORTVERSION= 6.3.11 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_BERLIOS} \ http://homepages.uni-paderborn.de/mandree/fetchmail/:ma \ diff --git a/mail/fetchmail/files/patch-socket.c b/mail/fetchmail/files/patch-socket.c new file mode 100644 index 000000000000..1220421515a1 --- /dev/null +++ b/mail/fetchmail/files/patch-socket.c @@ -0,0 +1,15 @@ +--- socket.c.org 2009-08-08 16:01:49.000000000 +0200 ++++ socket.c 2009-08-08 16:03:17.000000000 +0200 +@@ -628,9 +628,10 @@ + report(stdout, GT_("Unknown Issuer CommonName\n")); + } + if ((i = X509_NAME_get_text_by_NID(subj, NID_commonName, buf, sizeof(buf))) != -1) { +- if (outlevel >= O_VERBOSE) ++ if (outlevel >= O_VERBOSE) { + report(stdout, GT_("Server CommonName: %s\n"), (tt = sdump(buf, i))); +- xfree(tt); ++ xfree(tt); ++ } + if ((size_t)i >= sizeof(buf) - 1) { + /* Possible truncation. In this case, this is a DNS name, so this + * is really bad. We do not tolerate this even in the non-strict case. */ -- cgit