1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00

Merge pull request #370 from RichardHitt/pull369

Fix crash by detecting NULL channel in url_join_only() and just returnin...
This commit is contained in:
TingPing 2013-01-10 01:59:08 -08:00
commit 4a2ecc5d6c

View File

@ -3350,6 +3350,8 @@ static void
url_join_only (server *serv, char *tbuf, char *channel)
{
/* already connected, JOIN only. FIXME: support keys? */
if (channel == NULL)
return;
tbuf[0] = '#';
/* tbuf is 4kb */
safe_strcpy ((tbuf + 1), channel, 256);