Add ldap_memfree() to the mix.

This commit is contained in:
Kurt Zeilenga 1998-12-22 18:42:02 +00:00
parent e795f9168d
commit 32d9cc239c

View file

@ -21,6 +21,17 @@ static char copyright[] = "@(#) Copyright (c) 1994 The Regents of the University
#include "ldap-int.h"
/*
* C-API deallocator
*/
void
ldap_memfree( void *p )
{
if(p != NULL) {
free( p );
}
}
void
ldap_getfilter_free( LDAPFiltDesc *lfdp )
{