Skip to content
Snippets Groups Projects
Commit c723a77e authored by Luke Howard's avatar Luke Howard
Browse files

Fix crasher in slapi_over_unmerge_controls() (if called from cleanup handler

where merge controls was not called)
parent dcfd499e
No related branches found
No related tags found
No related merge requests found
......@@ -478,7 +478,7 @@ slapi_over_unmerge_controls( Operation *op, SlapReply *rs )
slapi_pblock_get( pb, SLAPI_X_OLD_RESCONTROLS, (void **)&rs_ctrls );
if ( rs->sr_ctrls == NULL || rs->sr_ctrls == rs_ctrls ) {
if ( rs_ctrls == NULL || rs->sr_ctrls == rs_ctrls ) {
/* no copying done */
return LDAP_SUCCESS;
}
......
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