mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Fix leak pointed out by christian.lorenz@suse.de (ITS#614)
This commit is contained in:
parent
d4d03e36e5
commit
d7c4b4c4e7
@ -53,9 +53,9 @@ get_ava(
|
||||
aa->aa_value = NULL;
|
||||
|
||||
rc = slap_bv2ad( &type, &aa->aa_desc, text );
|
||||
ch_free( type.bv_val );
|
||||
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
ch_free( type.bv_val );
|
||||
ch_free( value.bv_val );
|
||||
ch_free( aa );
|
||||
return rc;
|
||||
@ -65,7 +65,6 @@ get_ava(
|
||||
ch_free( value.bv_val );
|
||||
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
ch_free( type.bv_val );
|
||||
ad_free( aa->aa_desc, 1 );
|
||||
ch_free( aa );
|
||||
return rc;
|
||||
|
Loading…
Reference in New Issue
Block a user