summary refs log tree commit diff stats
path: root/src/common/hexchat.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-12-31 11:12:43 -0500
committerTingPing <tingping@tingping.se>2014-12-31 11:12:43 -0500
commit112632bb4ecfc54dba6346c1a9c3af9861c6a74b (patch)
tree689e7d65ce866f5df17de4abcb9c896f1ff24f66 /src/common/hexchat.c
parentc5016e390ff6bb4e3aa65db0b446d9cbac42994b (diff)
Fix some possible null-deref warnings
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r--src/common/hexchat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c
index 71ea9791..fdae21d0 100644
--- a/src/common/hexchat.c
+++ b/src/common/hexchat.c
@@ -220,7 +220,7 @@ find_channel (server *serv, char *chan)
 	while (list)
 	{
 		sess = list->data;
-		if ((!serv || serv == sess->server) && sess->type == SESS_CHANNEL)
+		if ((serv == sess->server) && sess->type == SESS_CHANNEL)
 		{
 			if (!serv->p_cmp (chan, sess->channel))
 				return sess;