Files
mars-tinyldap/free_ldappal.c
2002-07-16 23:00:26 +00:00

12 lines
207 B
C

#include <stdlib.h>
#include "ldap.h"
void free_ldappal(struct PartialAttributeList* a) {
while (a) {
struct PartialAttributeList* tmp=a->next;
free_ldapadl(a->values);
free(a); a=tmp;
}
}