mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-01 14:15:49 +08:00
Plug leak of substrings filter_free()
This commit is contained in:
parent
22646a6915
commit
e9823160d2
3
CHANGES
3
CHANGES
@ -1,6 +1,7 @@
|
|||||||
OpenLDAP 2.0 Change Log
|
OpenLDAP 2.0 Change Log
|
||||||
|
|
||||||
OpenLDAP 2.0.13 Engineering
|
OpenLDAP 2.0.13 Engineering
|
||||||
|
Fixed slapd substring filter_free bug
|
||||||
Fixed ldapdelete -c handling (ITS#1071)
|
Fixed ldapdelete -c handling (ITS#1071)
|
||||||
|
|
||||||
OpenLDAP 2.0.12 Release
|
OpenLDAP 2.0.12 Release
|
||||||
@ -8,7 +9,7 @@ OpenLDAP 2.0.12 Release
|
|||||||
Fixed slapd modlist2mods error text bug
|
Fixed slapd modlist2mods error text bug
|
||||||
Fixed slapd numericString bugs (ITS#1182,1254)
|
Fixed slapd numericString bugs (ITS#1182,1254)
|
||||||
Fixed slapd empty rootdn bug (ITS#1172)
|
Fixed slapd empty rootdn bug (ITS#1172)
|
||||||
Fixed slapd passwd modify replication
|
Fixed slapd passwd modify replication (ITS#1237)
|
||||||
Fixed slapd textbuf bugs (ITS#1275)
|
Fixed slapd textbuf bugs (ITS#1275)
|
||||||
Fixed ldapmodrdn SASL auth bug (ITS#1179)
|
Fixed ldapmodrdn SASL auth bug (ITS#1179)
|
||||||
Fixed slapadd already exists bug (ITS#1191)
|
Fixed slapadd already exists bug (ITS#1191)
|
||||||
|
@ -572,6 +572,7 @@ filter_free( Filter *f )
|
|||||||
if ( f->f_sub_final != NULL ) {
|
if ( f->f_sub_final != NULL ) {
|
||||||
ber_bvfree( f->f_sub_final );
|
ber_bvfree( f->f_sub_final );
|
||||||
}
|
}
|
||||||
|
ch_free( f->f_sub );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LDAP_FILTER_AND:
|
case LDAP_FILTER_AND:
|
||||||
|
Loading…
Reference in New Issue
Block a user