Fix wrong pointer usage.

This commit is contained in:
DasBrain 2021-05-24 07:59:38 +02:00
parent 0562f6d6a4
commit d4d0a2350f

View File

@ -1545,7 +1545,7 @@ irc_inline (server *serv, char *buf, int len)
if (*buf == '@')
{
*tags = buf + 1; /* skip the '@' */
tags = buf + 1; /* skip the '@' */
char *sep = strchr (buf, ' ');
if (!sep)