summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Bisch <joseph.bisch@gmail.com>2017-05-17 10:08:51 -0400
committerJoseph Bisch <joseph.bisch@gmail.com>2017-05-29 14:53:26 -0400
commit528f51bfbe5c65c5b24546faa244009dd5b3c586 (patch)
tree67709fc1e5a49f0432e9e802ba519b718ed177ac /src
parent10cea6169694808ab2bf2caf9451cfac2db0d9da (diff)
downloadirssi-528f51bfbe5c65c5b24546faa244009dd5b3c586.zip
Fix dcc_request where addr is NULL
Diffstat (limited to 'src')
-rw-r--r--src/irc/dcc/dcc-get.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/irc/dcc/dcc-get.c b/src/irc/dcc/dcc-get.c
index 73c1b864..98294099 100644
--- a/src/irc/dcc/dcc-get.c
+++ b/src/irc/dcc/dcc-get.c
@@ -428,6 +428,10 @@ static void ctcp_msg_dcc_send(IRC_SERVER_REC *server, const char *data,
int p_id = -1;
int passive = FALSE;
+ if (addr == NULL) {
+ addr = "";
+ }
+
/* SEND <file name> <address> <port> <size> [...] */
/* SEND <file name> <address> 0 <size> <id> (DCC SEND passive protocol) */
params = g_strsplit(data, " ", -1);