2007-06-04 02:50:28 +00:00
|
|
|
/*
|
2013-08-11 14:28:45 +00:00
|
|
|
* Copyright (C) 2012 by Darren Reed.
|
2007-06-04 02:50:28 +00:00
|
|
|
*
|
|
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
|
|
*
|
2013-08-11 14:28:45 +00:00
|
|
|
* $Id: alist_free.c,v 1.3.2.2 2012/07/22 08:04:24 darren_r Exp $
|
2007-06-04 02:50:28 +00:00
|
|
|
*/
|
|
|
|
#include "ipf.h"
|
|
|
|
|
|
|
|
void
|
2021-12-20 17:07:20 +00:00
|
|
|
alist_free(alist_t *hosts)
|
2007-06-04 02:50:28 +00:00
|
|
|
{
|
|
|
|
alist_t *a, *next;
|
|
|
|
|
|
|
|
for (a = hosts; a != NULL; a = next) {
|
|
|
|
next = a->al_next;
|
|
|
|
free(a);
|
|
|
|
}
|
|
|
|
}
|