mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 21:19:53 -05:00
We were freeing lud_dn when when lud_host was meant, leading to
arena corruption.
This commit is contained in:
parent
cb94e155ae
commit
463a7ec91d
1 changed files with 1 additions and 1 deletions
|
|
@ -417,7 +417,7 @@ ldap_free_urldesc( LDAPURLDesc *ludp )
|
|||
}
|
||||
|
||||
if ( ludp->lud_host != NULL ) {
|
||||
LDAP_FREE( ludp->lud_dn );
|
||||
LDAP_FREE( ludp->lud_host );
|
||||
}
|
||||
|
||||
if ( ludp->lud_dn != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue