Fix two minor issues outlined in the PR#222

irc-cap.c has now a licence header.
A minor style fix in misc.c
This commit is contained in:
LemonBoy 2015-09-02 22:40:10 +02:00
commit 21c1e4e9f8
2 changed files with 20 additions and 1 deletions

View file

@ -215,7 +215,7 @@ void gslist_free_full (GSList *list, GDestroyNotify free_func)
{
GSList *tmp;
if (!list)
if (list == NULL)
return;
for (tmp = list; tmp != NULL; tmp = tmp->next)