1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

NAMES list crashed with long nicks .. hope it doesn't crash now somewhere

else :)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@228 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-05-25 10:59:22 +00:00 committed by cras
parent 8f341a9308
commit 665963703b

View File

@ -80,7 +80,7 @@ static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist, gint it
str = g_string_new(NULL);
cols = max > 65 ? 1 : (65 / (max+3)); /* "[] " */
lines = items <= cols ? 1 : items / cols+1;
lines = items <= cols ? 1 : (items-(cols-1)) / cols;
last = NULL; linebuf = g_malloc(max+1); linebuf[max] = '\0';
for (line = 0, col = 0, skip = 1, tmp = nicklist; line < lines; last = rec, tmp = tmp->next)