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

Fix crash by detecting NULL channel in url_join_only() and just returning.

This commit is contained in:
RichardHitt 2013-01-10 00:13:25 -08:00
parent 672dbf75d6
commit 475eb9fcaa

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);