We were freeing lud_dn when when lud_host was meant, leading to

arena corruption.
This commit is contained in:
Julio Sánchez Fernández 1999-07-20 11:11:57 +00:00
parent cb94e155ae
commit 463a7ec91d

View File

@ -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 ) {