Skip to content
Snippets Groups Projects
Commit 463a7ec9 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

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

arena corruption.
parent cb94e155
No related branches found
No related tags found
No related merge requests found
......@@ -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 ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment