aboutsummaryrefslogtreecommitdiffstats
path: root/extra/dircproxy/1.0.5-CVE-2007-5226.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extra/dircproxy/1.0.5-CVE-2007-5226.patch')
-rw-r--r--extra/dircproxy/1.0.5-CVE-2007-5226.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/dircproxy/1.0.5-CVE-2007-5226.patch b/extra/dircproxy/1.0.5-CVE-2007-5226.patch
new file mode 100644
index 0000000000..1d9994228b
--- /dev/null
+++ b/extra/dircproxy/1.0.5-CVE-2007-5226.patch
@@ -0,0 +1,12 @@
+diff -u dircproxy-1.0.5/src/irc_server.c dircproxy-1.0.5/src/irc_server.c
+--- dircproxy-1.0.5/src/irc_server.c
++++ dircproxy-1.0.5/src/irc_server.c
+@@ -1078,7 +1078,7 @@
+
+ if (!strcmp(cmsg.cmd, "ACTION")) {
+ if (p->conn_class->log_events & IRC_LOG_ACTION)
+- irclog_ctcp(p, msg.params[0], msg.src.orig, "%s", cmsg.orig);
++ irclog_ctcp(p, (msg.params != NULL ) ? msg.params[0]: "none", msg.src.orig, "%s", cmsg.orig);
+
+ } else if (!strcmp(cmsg.cmd, "DCC")
+ && p->conn_class->dcc_proxy_incoming) {