pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mail/mutt-kz Add patch from mutt (security fix):
details: https://anonhg.NetBSD.org/pkgsrc/rev/ef06daceee14
branches: trunk
changeset: 632206:ef06daceee14
user: wiz <wiz%pkgsrc.org@localhost>
date: Wed Mar 19 16:17:38 2014 +0000
description:
Add patch from mutt (security fix):
Fix buffer overrun caused by not updating a string length after
address expansion.
http://dev.mutt.org/hg/mutt/rev/9bf7593e3c08
diffstat:
mail/mutt-kz/Makefile | 3 ++-
mail/mutt-kz/distinfo | 3 ++-
mail/mutt-kz/patches/patch-copy.c | 16 ++++++++++++++++
3 files changed, 20 insertions(+), 2 deletions(-)
diffs (47 lines):
diff -r 5adc466a81f3 -r ef06daceee14 mail/mutt-kz/Makefile
--- a/mail/mutt-kz/Makefile Wed Mar 19 15:11:52 2014 +0000
+++ b/mail/mutt-kz/Makefile Wed Mar 19 16:17:38 2014 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2014/01/12 17:43:37 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2014/03/19 16:17:38 wiz Exp $
DISTNAME= mutt-kz-1.5.22.1-rc1
PKGNAME= ${DISTNAME:S/-rc/rc/}
+PKGREVISION= 1
CATEGORIES= mail
MASTER_SITES= ftp://redcrew.org/pub/mutt-kz/v1.5.22.1/
diff -r 5adc466a81f3 -r ef06daceee14 mail/mutt-kz/distinfo
--- a/mail/mutt-kz/distinfo Wed Mar 19 15:11:52 2014 +0000
+++ b/mail/mutt-kz/distinfo Wed Mar 19 16:17:38 2014 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1 2014/01/12 17:43:37 wiz Exp $
+$NetBSD: distinfo,v 1.2 2014/03/19 16:17:38 wiz Exp $
SHA1 (mutt-kz-1.5.22.1-rc1.tar.gz) = fe32a44f284291e186e648ecddaad7cc12fe3579
RMD160 (mutt-kz-1.5.22.1-rc1.tar.gz) = 16a3f4927da2149407a2f6771c6732932e4c7a67
@@ -17,3 +17,4 @@
SHA1 (patch-ao) = ddd3157233c481a89f2f3896192fef7121e16276
SHA1 (patch-ap) = 810715ebe1c931cf19059261d614dcc9d5cfe82a
SHA1 (patch-aq) = e363d8929ced9731a31af1137b111d3476a3d05d
+SHA1 (patch-copy.c) = df72c7fd2e7ebb7622f0f72e317aa543e6ba9612
diff -r 5adc466a81f3 -r ef06daceee14 mail/mutt-kz/patches/patch-copy.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/mutt-kz/patches/patch-copy.c Wed Mar 19 16:17:38 2014 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-copy.c,v 1.1 2014/03/19 16:17:38 wiz Exp $
+
+Fix buffer overrun caused by not updating a string length after
+address expansion.
+http://dev.mutt.org/hg/mutt/rev/9bf7593e3c08
+
+--- copy.c.orig 2013-11-14 10:03:28.000000000 +0000
++++ copy.c
+@@ -258,6 +258,7 @@ mutt_copy_hdr (FILE *in, FILE *out, LOFF
+ {
+ if (!address_header_decode (&this_one))
+ rfc2047_decode (&this_one);
++ this_one_len = mutt_strlen (this_one);
+ }
+
+ if (!headers[x])
Home |
Main Index |
Thread Index |
Old Index