]> git.pld-linux.org Git - packages/irssi.git/commitdiff
- new
authorAdam Gołębiowski <adamg@pld-linux.org>
Wed, 24 Jun 2009 07:06:08 +0000 (07:06 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    irssi-CVE-2009-1959.patch -> 1.1

irssi-CVE-2009-1959.patch [new file with mode: 0644]

diff --git a/irssi-CVE-2009-1959.patch b/irssi-CVE-2009-1959.patch
new file mode 100644 (file)
index 0000000..6449e25
--- /dev/null
@@ -0,0 +1,11 @@
+--- irssi-0.8.13/src/fe-common/irc/fe-events.c.orig    2009-03-31 22:50:01.000000000 +0200
++++ irssi-0.8.13/src/fe-common/irc/fe-events.c 2009-06-24 09:05:21.281887774 +0200
+@@ -298,7 +298,7 @@
+               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);
+       }
This page took 0.138532 seconds and 4 git commands to generate.