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
2593de37
Commit
2593de37
authored
Apr 14, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5388
parent
47d4e28e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2593de37
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.9 Engineering
Fixed slapcat error checking (ITS#5387)
Fixed slapd frontendDB backend selection (ITS#5419)
Fixed slapd delta-syncrepl resync (ITS#5378)
Fixed slapd pointer dereference (ITS#5388)
Fixed slapd syncrepl hang on back-config (ITS#5407)
Fixed slapd syncrepl compare_csns crash (ITS#5413)
Fixed slapd syncrepl contextCSN update clash (ITS#5426)
...
...
servers/slapd/oc.c
View file @
2593de37
...
...
@@ -502,6 +502,10 @@ oc_next( ObjectClass **oc )
}
#endif
if
(
*
oc
==
NULL
)
{
return
0
;
}
*
oc
=
LDAP_STAILQ_NEXT
(
*
oc
,
soc_next
);
return
(
*
oc
!=
NULL
);
...
...
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