o Add a buffer overflow patch in sync with rxvt port Makefile rev

1.49
o Bump PORTREVISION

Obtained from:	OpenBSD
This commit is contained in:
Mario Sergio Fujikawa Ferreira 2001-08-23 21:24:06 +00:00
parent 512dfab14f
commit 9b9abd8ec3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=46752
2 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,7 @@
PORTNAME= rxvt-devel
PORTVERSION= 2.7.6
PORTREVISION= 1
CATEGORIES= x11
MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/%SUBDIR%/ \
ftp://mason.primenet.com.au/pub/rxvt/%SUBDIR%/ \

View File

@ -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));
}