Skip to content
Snippets Groups Projects
Commit 32d9cc23 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add ldap_memfree() to the mix.

parent e795f916
No related branches found
No related tags found
No related merge requests found
......@@ -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 )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment