1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Fix dcc_request where addr is NULL

This commit is contained in:
Joseph Bisch 2017-05-17 10:08:51 -04:00
parent 10cea61696
commit 528f51bfbe
No known key found for this signature in database
GPG Key ID: CF08FAC339AB7E8E

View File

@ -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);