1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

fix crash in setname

This commit is contained in:
ailin-nemui 2019-08-16 21:19:20 +02:00
parent d191c6e94e
commit 255d850c4d

View File

@ -454,6 +454,7 @@ static void event_setname(SERVER_REC *server, const char *data, const char *nick
if (!IS_IRC_SERVER(server))
return;
g_return_if_fail(nick != NULL);
g_return_if_fail(data != NULL);
if (*data == ':') data++;