diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-23 21:24:06 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2001-08-23 21:24:06 +0000 |
commit | 9b9abd8ec384c7fe29ee2406736af1bea7812246 (patch) | |
tree | 513f0134a081a52205b48136f84bb7e62e7ae2bc /x11 | |
parent | Add a buffer overflow fix (diff) |
o Add a buffer overflow patch in sync with rxvt port Makefile rev
1.49
o Bump PORTREVISION
Obtained from: OpenBSD
Notes
Notes:
svn path=/head/; revision=46752
Diffstat (limited to 'x11')
-rw-r--r-- | x11/rxvt-devel/Makefile | 1 | ||||
-rw-r--r-- | x11/rxvt-devel/files/patch-src::command.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/x11/rxvt-devel/Makefile b/x11/rxvt-devel/Makefile index d7185cfa0c58..ec508610e534 100644 --- a/x11/rxvt-devel/Makefile +++ b/x11/rxvt-devel/Makefile @@ -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%/ \ diff --git a/x11/rxvt-devel/files/patch-src::command.c b/x11/rxvt-devel/files/patch-src::command.c new file mode 100644 index 000000000000..6f3e7e9a7bcb --- /dev/null +++ b/x11/rxvt-devel/files/patch-src::command.c @@ -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)); + } |