Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
fa4dbb87
Commit
fa4dbb87
authored
Nov 29, 2010
by
Pierangelo Masarati
Browse files
fix double free related to ITS#6720
parent
c9a63dc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/overlays/rwm.c
View file @
fa4dbb87
...
...
@@ -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
.
Attach a 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