mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 04:59:39 -05:00
ITS#10185 autogroup: plug memleak when deleting a group
This commit is contained in:
parent
2e238855e8
commit
bf24be37fe
1 changed files with 1 additions and 1 deletions
|
|
@ -934,7 +934,7 @@ autogroup_delete_group( autogroup_info_t *agi, autogroup_entry_t *e )
|
|||
if ( age_prev != NULL ) {
|
||||
age_prev->age_next = age_next;
|
||||
} else {
|
||||
agi->agi_entry = NULL;
|
||||
agi->agi_entry = age_next;
|
||||
}
|
||||
|
||||
ch_free( age->age_dn.bv_val );
|
||||
|
|
|
|||
Loading…
Reference in a new issue