mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 09:12:22 -05:00
Truncate text if too long. Closes Issue #463
This commit is contained in:
parent
c6ead740c8
commit
f7923f2a02
@ -1780,6 +1780,8 @@ format_event (session *sess, int index, char **args, char *o, int sizeofo, unsig
|
||||
printf ("arg[%d] is NULL in print event\n", a + 1);
|
||||
} else
|
||||
{
|
||||
if (strlen (ar) > sizeofo - oi - 4)
|
||||
ar[sizeofo - oi - 4] = 0; /* Avoid buffer overflow */
|
||||
if (stripcolor_args & ARG_FLAG(a + 1)) len = strip_color2 (ar, -1, &o[oi], STRIP_ALL);
|
||||
else len = strip_hidden_attribute (ar, &o[oi]);
|
||||
oi += len;
|
||||
|
Loading…
Reference in New Issue
Block a user