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
611d8185
Commit
611d8185
authored
Apr 15, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6501
parent
5a28e885
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
611d8185
...
...
@@ -14,6 +14,7 @@ OpenLDAP 2.4.22 Engineering
Fixed slapd sasl auxprop ssf (ITS#5195)
Fixed slapd syncrepl for unknown attrs and delta-sync (ITS#6473)
Fixed slapd-bdb contextCSN updates from updatedn (ITS#6469)
Fixed slapd-bdb lockobj zeroing (ITS#6501)
Fixed slapo-collect REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-dds with NULL backend (ITS#6490)
Fixed slapo-dynlist REP_ENTRY flag handling (ITS#5340,ITS#6423)
...
...
servers/slapd/back-bdb/cache.c
View file @
611d8185
...
...
@@ -184,6 +184,7 @@ bdb_cache_entry_db_relock(
if
(
!
lock
)
return
0
;
DBTzero
(
&
lockobj
);
lockobj
.
data
=
&
ei
->
bei_id
;
lockobj
.
size
=
sizeof
(
ei
->
bei_id
)
+
1
;
...
...
@@ -225,6 +226,7 @@ bdb_cache_entry_db_lock( struct bdb_info *bdb, DB_TXN *txn, EntryInfo *ei,
else
db_rw
=
DB_LOCK_READ
;
DBTzero
(
&
lockobj
);
lockobj
.
data
=
&
ei
->
bei_id
;
lockobj
.
size
=
sizeof
(
ei
->
bei_id
)
+
1
;
...
...
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