From: Kurt Zeilenga Date: Fri, 4 Jan 2002 03:53:13 +0000 (+0000) Subject: Use LDAP_FREE not free X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~300 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6c80cfb2e8a291cb8f88c0e9aa7e047afb9a939f;p=openldap Use LDAP_FREE not free --- diff --git a/libraries/libldap/filter.c b/libraries/libldap/filter.c index 8c0531cd9a..96abc9c121 100644 --- a/libraries/libldap/filter.c +++ b/libraries/libldap/filter.c @@ -475,7 +475,7 @@ ldap_int_put_filter( BerElement *ber, const char *str_in ) rc = parens ? -1 : 0; done: - free( freeme ); + LDAP_FREE( freeme ); return rc; }