mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
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:
parent
e948aaa4ba
commit
21c1e4e9f8
2 changed files with 20 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue