summaryrefslogtreecommitdiff
path: root/security/gnupg1
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2006-11-27 22:37:42 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2006-11-27 22:37:42 +0000
commit36515a4465046971ad0541b5b052039dd2b43ad1 (patch)
tree5eb6c9fa5609541557ca8039de86e6a208e91e20 /security/gnupg1
parentUpgrade K3DSurf to 0.6.0. (diff)
Fix buffer overflow.
References: http://lists.gnupg.org/pipermail/gnupg-announce/2006q4/000241.html
Notes
Notes: svn path=/head/; revision=178142
Diffstat (limited to 'security/gnupg1')
-rw-r--r--security/gnupg1/Makefile2
-rw-r--r--security/gnupg1/files/patch-openfile.c12
2 files changed, 13 insertions, 1 deletions
diff --git a/security/gnupg1/Makefile b/security/gnupg1/Makefile
index 92377e4eb934..902f7dcefaf7 100644
--- a/security/gnupg1/Makefile
+++ b/security/gnupg1/Makefile
@@ -7,7 +7,7 @@
PORTNAME= gnupg
PORTVERSION= 1.4.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GNUPG}
MASTER_SITE_SUBDIR= gnupg
diff --git a/security/gnupg1/files/patch-openfile.c b/security/gnupg1/files/patch-openfile.c
new file mode 100644
index 000000000000..833b06cdafbf
--- /dev/null
+++ b/security/gnupg1/files/patch-openfile.c
@@ -0,0 +1,12 @@
+--- g10/openfile.c.orig Tue Nov 28 07:13:53 2006
++++ g10/openfile.c Tue Nov 28 07:18:30 2006
+@@ -144,8 +144,8 @@
+
+ s = _("Enter new filename");
+
+- n = strlen(s) + namelen + 10;
+ defname = name && namelen? make_printable_string( name, namelen, 0): NULL;
++ n = strlen(s) + (defname?strlen (defname):0) + 10;
+ prompt = xmalloc(n);
+ if( defname )
+ sprintf(prompt, "%s [%s]: ", s, defname );