mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
security fixes from 0.7.97.2
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1017 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
99b29df17c
commit
06a6428d83
6 changed files with 21 additions and 18 deletions
|
|
@ -111,14 +111,14 @@ static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist, gint it
|
|||
|
||||
if (col == cols || tmp->next == NULL)
|
||||
{
|
||||
printtext(channel->server, channel->name, MSGLEVEL_CLIENTCRAP, str->str);
|
||||
printtext(channel->server, channel->name, MSGLEVEL_CLIENTCRAP, "%s", str->str);
|
||||
g_string_truncate(str, 0);
|
||||
col = 0; line++;
|
||||
tmp = g_slist_nth(nicklist, line-1); skip = 1;
|
||||
}
|
||||
}
|
||||
if (str->len != 0)
|
||||
printtext(channel->server, channel->name, MSGLEVEL_CLIENTCRAP, str->str);
|
||||
printtext(channel->server, channel->name, MSGLEVEL_CLIENTCRAP, "%s", str->str);
|
||||
g_string_free(str, TRUE);
|
||||
g_free(linebuf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue