diff options
author | wxs <wxs@FreeBSD.org> | 2009-09-08 23:12:21 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2009-09-08 23:12:21 +0800 |
commit | 44621270716bbe7fc87f07ef234af1fa7ef9aaf6 (patch) | |
tree | 6b8ba79e59e896570332a16e8fe41adc37218b58 | |
parent | d1f8a34739bd6ae4d06661ceedade8d8022e61cb (diff) | |
download | freebsd-ports-gnome-44621270716bbe7fc87f07ef234af1fa7ef9aaf6.tar.gz freebsd-ports-gnome-44621270716bbe7fc87f07ef234af1fa7ef9aaf6.tar.zst freebsd-ports-gnome-44621270716bbe7fc87f07ef234af1fa7ef9aaf6.zip |
- Add a patch to fix segfault on startup.
PR: ports/137972
Submitted by: Christian Ludwig <chrissicool@chrissicool.net>
Approved by: Corey Halpin <chalpin@cs.wisc.edu> (maintainer)
-rw-r--r-- | mail/fetchmail/Makefile | 1 | ||||
-rw-r--r-- | mail/fetchmail/files/patch-socket.c | 15 |
2 files changed, 16 insertions, 0 deletions
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. */ |