1
0
mirror of https://github.com/irssi/irssi.git synced 2024-08-04 03:34:18 -04:00

Typofix - might have caused a crash if channel was destroyed with /WINDOW

CLOSE.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1753 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-14 11:22:19 +00:00 committed by cras
parent 3deb0a7b66
commit ed93f91d96

View File

@ -162,7 +162,7 @@ static void sig_message_join(SERVER_REC *server, const char *channel,
CHANNEL_REC *chanrec;
chanrec = channel_find(server, channel);
if (channel != NULL)
if (chanrec != NULL)
CHANNEL_LAST_MSG_ADD(chanrec, nick, FALSE);
}