Skip to content
Snippets Groups Projects
Commit f6bc2aff authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6635

parent adb7c84e
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ OpenLDAP 2.4.24 Engineering
Fixed liblutil getpass prompts (ITS#6702)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd filter leak (ITS#6635)
Fixed slapd when first acl is value dependent (ITS#6693)
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd sortvals of attributes with 1 value (ITS#6715)
......
......@@ -521,6 +521,8 @@ filter_free_x( Operation *op, Filter *f, int freeme )
switch ( f->f_choice ) {
case LDAP_FILTER_PRESENT:
if ( f->f_desc->ad_flags & SLAP_DESC_TEMPORARY )
op->o_tmpfree( f->f_desc, op->o_tmpmemctx );
break;
case LDAP_FILTER_EQUALITY:
......
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