Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
e164298f
Commit
e164298f
authored
Jun 10, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6549
parent
af9a2b05
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e164298f
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.23 Engineering
Fixed liblutil off-by-one with delta (ITS#6541)
Fixed slapd syncrepl rid logging (ITS#6533)
Fixed slapd-bdb hasSubordinates computation (ITS#6549)
Fixed contrib/nssov network.c missing patch (ITS#6562)
Documentation
slapd-config(5) note default rootdn (ITS#6546)
...
...
servers/slapd/back-bdb/operational.c
View file @
e164298f
...
...
@@ -39,6 +39,7 @@ bdb_hasSubordinates(
OpExtra
*
oex
;
DB_TXN
*
rtxn
;
int
rc
;
int
release
=
0
;
assert
(
e
!=
NULL
);
...
...
@@ -48,7 +49,18 @@ bdb_hasSubordinates(
* let's disable the hasSubordinate feature for back-relay.
*/
if
(
BEI
(
e
)
==
NULL
)
{
return
LDAP_OTHER
;
Entry
*
ee
=
NULL
;
rc
=
be_entry_get_rw
(
op
,
&
e
->
e_nname
,
NULL
,
NULL
,
0
,
&
ee
);
if
(
rc
!=
LDAP_SUCCESS
||
ee
==
NULL
)
{
rc
=
LDAP_OTHER
;
goto
done
;
}
e
=
ee
;
release
=
1
;
if
(
BEI
(
ee
)
==
NULL
)
{
rc
=
LDAP_OTHER
;
goto
done
;
}
}
/* Check for a txn in a parent op, otherwise use reader txn */
...
...
@@ -61,7 +73,10 @@ bdb_hasSubordinates(
rtxn
=
opinfo
->
boi_txn
;
}
else
{
rc
=
bdb_reader_get
(
op
,
bdb
->
bi_dbenv
,
&
rtxn
);
if
(
rc
)
return
LDAP_OTHER
;
if
(
rc
)
{
rc
=
LDAP_OTHER
;
goto
done
;
}
}
retry:
...
...
@@ -92,6 +107,8 @@ retry:
rc
=
LDAP_OTHER
;
}
done:
;
if
(
release
&&
e
!=
NULL
)
be_entry_release_r
(
op
,
e
);
return
rc
;
}
...
...
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