summaryrefslogtreecommitdiff
path: root/chat/irssi/patches
diff options
context:
space:
mode:
authoradrianp <adrianp>2009-07-30 21:58:15 +0000
committeradrianp <adrianp>2009-07-30 21:58:15 +0000
commit38eb7a366920c50d9282883436f6b49f1dd004e9 (patch)
tree3ec82bf16a22219485db1d914143c1388d688d37 /chat/irssi/patches
parenta7df654e04924d7edc01c9a9f174c10c8651d0b0 (diff)
downloadpkgsrc-38eb7a366920c50d9282883436f6b49f1dd004e9.tar.gz
ChangeLog for 0.8.14
Features: * Make /reset an alias for /set -default. * Make /unset an alias for /set -clear. * Allow ctrl+home / ctrl+end to go to the beginning / end of scrollback. * Accept WHOX reply (354 numeric) as a /who reply. * Show numerics directed at channels in the channel window. * The time duration parser is more strict now. Bugfixes: * Fix out of bounds access in event_wallops(). * Build fix for OS X. * Fix the autolog_ignore_targets logic to work correctly with manually opened log files (see bug #673).
Diffstat (limited to 'chat/irssi/patches')
-rw-r--r--chat/irssi/patches/patch-ab19
1 files changed, 0 insertions, 19 deletions
diff --git a/chat/irssi/patches/patch-ab b/chat/irssi/patches/patch-ab
deleted file mode 100644
index 8db65b0e172..00000000000
--- a/chat/irssi/patches/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-ab,v 1.9 2009/07/27 12:59:44 obache Exp $
-
-Fix out of bounds access in event_wallops().
-
-This fixes irssi bug #662 (also known as CVE-2009-1959).
-
-http://svn.irssi.org/cgi-bin/viewvc.cgi?view=rev&root=irssi&revision=5068
-
---- src/fe-common/irc/fe-events.c.orig 2009-07-15 22:54:17.000000000 +0200
-+++ src/fe-common/irc/fe-events.c
-@@ -298,7 +298,7 @@ static void event_wallops(IRC_SERVER_REC
-
- tmp = g_strdup(data+8);
- len = strlen(tmp);
-- if (tmp[len-1] == 1) tmp[len-1] = '\0';
-+ if (len >= 1 && tmp[len-1] == 1) tmp[len-1] = '\0';
- printformat(server, NULL, MSGLEVEL_WALLOPS, IRCTXT_ACTION_WALLOPS, nick, tmp);
- g_free(tmp);
- }