Skip to content
Snippets Groups Projects
Commit 269bc814 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

plugged possible memory leak (e.g. when deleting syncrepl config)

parent 778fe9cd
No related branches found
No related tags found
No related merge requests found
......@@ -1726,6 +1726,10 @@ void bindconf_free( slap_bindconf *bc ) {
bc->sb_tls_crlcheck = NULL;
}
#endif
if ( bc->sb_tls_ctx ) {
ldap_pvt_tls_ctx_free( bc->sb_tls_ctx );
bc->sb_tls_ctx = NULL;
}
#endif
}
......
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