Fixed instances of hexchat_printf that unsafely used a string parameter as a format string.

Fixes #1153
This commit is contained in:
Arnavion
2014-09-25 00:54:38 -07:00
committed by TingPing
parent 513a1bd4b9
commit 131eda9c94
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -128,7 +128,7 @@ print_version (char *word[], char *word_eol[], void *userdata)
if (!g_ascii_strcasecmp ("HELP", word[2]))
{
hexchat_printf (ph, upd_help);
hexchat_printf (ph, "%s", upd_help);
return HEXCHAT_EAT_HEXCHAT;
}
else if (!g_ascii_strcasecmp ("SET", word[2]))
@@ -200,7 +200,7 @@ print_version (char *word[], char *word_eol[], void *userdata)
}
else
{
hexchat_printf (ph, upd_help);
hexchat_printf (ph, "%s", upd_help);
return HEXCHAT_EAT_HEXCHAT;
}
}