11 lines
186 B
C
11 lines
186 B
C
#include <stdlib.h>
|
|
#include "ldap.h"
|
|
|
|
void free_ldapadl(struct AttributeDescriptionList* a) {
|
|
while (a) {
|
|
struct AttributeDescriptionList* tmp=a->next;
|
|
free(a); a=tmp;
|
|
}
|
|
}
|
|
|