1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

irc: fix uncontrolled format string when sending ison command (for nicks monitored by /notify)

This commit is contained in:
Sebastien Helleu
2013-05-18 22:33:35 +02:00
parent 4f62af028d
commit 5877a458ea
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -889,7 +889,7 @@ irc_notify_timer_ison_cb (void *data, int remaining_calls)
NULL, 0, NULL);
irc_server_sendf (ptr_server,
IRC_SERVER_SEND_OUTQ_PRIO_LOW,
NULL, str_message);
NULL, "%s", str_message);
number++;
}
weechat_hashtable_free (hashtable);