Followed richtroye suggestion and implemented the net == NULL guard in

servlist_favchan_find().
This commit is contained in:
Diogo Sousa
2013-05-24 21:49:46 +01:00
parent 133b0f7d94
commit 7353bf2698
2 changed files with 7 additions and 2 deletions

View File

@@ -877,10 +877,15 @@ servlist_server_find (ircnet *net, char *name, int *pos)
favchannel *
servlist_favchan_find (ircnet *net, char *channel, int *pos)
{
GSList *list = net->favchanlist;
GSList *list;
favchannel *favchan;
int i = 0;
if (net == NULL)
return NULL;
list = net->favchanlist;
while (list)
{
favchan = list->data;