Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
4bedded4
Commit
4bedded4
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6720
parent
f5f6c014
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
4bedded4
...
...
@@ -53,6 +53,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-ppolicy to allow userPassword deletion (ITS#6620)
Fixed slapo-refint when last group member is deleted (ITS#6663)
Fixed slapo-refint with subtree rename (ITS#6730)
Fixed slapo-rwm double free (ITS#6720)
Fixed slapo-sssvlv initialization (ITS#6649)
Fixed slapo-syncprov to send error if consumer is newer (ITS#6606)
Fixed slapo-syncprov filter race condition (ITS#6708)
...
...
servers/slapd/overlays/rwm.c
View file @
4bedded4
...
...
@@ -598,7 +598,7 @@ rwm_op_modify( Operation *op, SlapReply *rs )
&
mapping
,
RWM_MAP
);
if
(
drop_missing
||
(
mapping
!=
NULL
&&
BER_BVISNULL
(
&
mapping
->
m_dst
)
)
)
{
goto
cleanu
p_mod
;
goto
ski
p_mod
;
}
}
...
...
@@ -693,6 +693,10 @@ next_mod:;
mlp
=
&
ml
->
sml_next
;
continue
;
skip_mod:
;
*
mlp
=
(
*
mlp
)
->
sml_next
;
continue
;
cleanup_mod:
;
ml
=
*
mlp
;
*
mlp
=
(
*
mlp
)
->
sml_next
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment