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
Joe Martin
OpenLDAP
Commits
0c401677
Commit
0c401677
authored
Apr 15, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5450
parent
1f42d9d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
0c401677
...
...
@@ -17,6 +17,7 @@ OpenLDAP 2.4.9 Engineering
Fixed slapd syncrepl crash on empty CSN (ITS#5432)
Fixed slapd syncrepl refreshAndPersist (ITS#5454)
Fixed slapd syncrepl modrdn processing (ITS#5397)
Fixed slapd value list termination (ITS#5450)
Fixed slapd/slapo-accesslog rq mutex usage (ITS#5442)
Fixed slapd-bdb ID_NOCACHE handling (ITS#5439)
Fixed slapd-ldap connection handler (ITS#5404)
...
...
servers/slapd/back-bdb/modify.c
View file @
0c401677
...
...
@@ -283,7 +283,7 @@ int bdb_modify_internal(
/* attribute was completely deleted */
vals
=
ap
->
a_nvals
;
}
if
(
!
BER_BVIS
EMPTY
(
vals
))
{
if
(
!
BER_BVIS
NULL
(
vals
))
{
rc
=
bdb_index_values
(
op
,
tid
,
ap
->
a_desc
,
vals
,
e
->
e_id
,
SLAP_INDEX_DELETE_OP
);
if
(
rc
!=
LDAP_SUCCESS
)
{
...
...
servers/slapd/modify.c
View file @
0c401677
...
...
@@ -589,6 +589,7 @@ int slap_mods_check(
ml
->
sml_values
[
nvals
]
=
pval
;
}
}
ml
->
sml_values
[
nvals
].
bv_len
=
0
;
ml
->
sml_numvals
=
nvals
;
/*
...
...
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