Ignore joins without a nick from broken servers

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4248 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Wouter Coekaerts 2006-03-01 00:02:48 +00:00 committed by coekie
commit 71db22a171
2 changed files with 9 additions and 0 deletions

View file

@ -273,6 +273,9 @@ static void notifylist_check_join(IRC_SERVER_REC *server, const char *nick,
NOTIFY_NICK_REC *rec;
char *user, *host;
if (nick == NULL)
return;
notify = notifylist_find(nick, server->connrec->chatnet);
if (notify == NULL) return;