Skip to content
Snippets Groups Projects
Commit 66943cad authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#7107 fix Operation init on reuse

Additional fix for a66fb163
parent f879bd0a
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,7 @@ slap_op_free( Operation *op, void *ctx )
op->o_bd = NULL;
BER_BVZERO( &op->o_req_dn );
BER_BVZERO( &op->o_req_ndn );
memset( op->o_hdr, 0, sizeof( *op->o_hdr ));
memset( &op->o_request, 0, sizeof( op->o_request ));
memset( &op->o_do_not_cache, 0, sizeof( Operation ) - offsetof( Operation, o_do_not_cache ));
memset( opbuf->ob_controls, 0, sizeof( opbuf->ob_controls ));
......
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