Skip to content
Snippets Groups Projects
Commit 466ff113 authored by Mark Adamson's avatar Mark Adamson
Browse files

ITS#897, internal connections need to free their single operation struct.

parent 7a458492
No related branches found
No related tags found
No related merge requests found
......@@ -1318,6 +1318,10 @@ int connection_internal_open( Connection **conn, LDAP **ldp, const char *id )
void connection_internal_close( Connection *conn )
{
Operation *op = conn->c_ops;
slap_op_remove( &conn->c_ops, op );
slap_op_free( op );
connection_closing( conn );
connection_close( conn );
}
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