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
5a11e387
Commit
5a11e387
authored
Feb 19, 2009
by
Quanah Gibson-Mount
Browse files
ITS
#5959
parent
0f7f78a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5a11e387
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.15 Release (2009/02/19)
Fixed slapd corrupt contextCSN (ITS#5947)
Fixed slapd syncrepl order to match on add/delete (ITS#5954)
Fixed slapd-bdb/hdb behavior with unallocatable shm (ITS#5956)
Fixed slapd-meta with entries with invalid attrs (ITS#5959)
Fixed slapo-pcache caching invalid entries (ITS#5927)
Fixed slapo-rwm objectClass preservation (ITS#5760)
Build Environment
...
...
servers/slapd/back-meta/search.c
View file @
5a11e387
...
...
@@ -2080,12 +2080,17 @@ remove_oc:;
attr
->
a_nvals
=
ch_malloc
(
(
last
+
1
)
*
sizeof
(
struct
berval
)
);
for
(
i
=
0
;
i
<
last
;
i
++
)
{
attr
->
a_desc
->
ad_type
->
sat_equality
->
smr_normalize
(
/* if normalizer fails, forget this attr */
if
(
attr
->
a_desc
->
ad_type
->
sat_equality
->
smr_normalize
(
SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX
,
attr
->
a_desc
->
ad_type
->
sat_syntax
,
attr
->
a_desc
->
ad_type
->
sat_equality
,
&
attr
->
a_vals
[
i
],
&
attr
->
a_nvals
[
i
],
NULL
);
NULL
))
{
BER_BVZERO
(
&
attr
->
a_nvals
[
i
]
);
attr_free
(
attr
);
goto
next_attr
;
}
}
BER_BVZERO
(
&
attr
->
a_nvals
[
i
]
);
...
...
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