mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Merge branch 'fix-gl9' into 'security'
Fix dcc_request where addr is NULL See merge request !13
This commit is contained in:
commit
200eb5922e
1 changed files with 4 additions and 0 deletions
|
|
@ -430,6 +430,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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue