summaryrefslogtreecommitdiff
path: root/x11/rxvt
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-08-23 21:09:26 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-08-23 21:09:26 +0000
commit512dfab14f465a1a75f6763cbd5a02c9c19e3b63 (patch)
treee813924c15d8de75adf5f0851c5ef37986b73ee0 /x11/rxvt
parentUpdate to 1.16 (diff)
Add a buffer overflow fix
Submitted by: kris Obtained from: OpenBSD
Notes
Notes: svn path=/head/; revision=46751
Diffstat (limited to 'x11/rxvt')
-rw-r--r--x11/rxvt/Makefile1
-rw-r--r--x11/rxvt/files/patch-ad11
2 files changed, 12 insertions, 0 deletions
diff --git a/x11/rxvt/Makefile b/x11/rxvt/Makefile
index ca3ef61780d0..7c70f683986c 100644
--- a/x11/rxvt/Makefile
+++ b/x11/rxvt/Makefile
@@ -10,6 +10,7 @@
PORTNAME= rxvt
PORTVERSION= 2.6.3
+PORTREVISION= 1
CATEGORIES+= x11
MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/%SUBDIR%/ \
ftp://mason.primenet.com.au/pub/rxvt/%SUBDIR%/ \
diff --git a/x11/rxvt/files/patch-ad b/x11/rxvt/files/patch-ad
new file mode 100644
index 000000000000..6f3e7e9a7bcb
--- /dev/null
+++ b/x11/rxvt/files/patch-ad
@@ -0,0 +1,11 @@
+--- src/command.c.orig Thu Apr 5 03:52:39 2001
++++ src/command.c Fri Jun 22 13:36:57 2001
+@@ -2796,7 +2796,7 @@ rxvt_tt_printf(rxvt_t *r, const char *fm
+ unsigned char buf[256];
+
+ va_start(arg_ptr, fmt);
+- vsprintf(buf, fmt, arg_ptr);
++ vsnprintf(buf, sizeof(buf), fmt, arg_ptr);
+ va_end(arg_ptr);
+ rxvt_tt_write(r, buf, STRLEN(buf));
+ }