Skip to content
Snippets Groups Projects
Commit 611d8185 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6501

parent 5a28e885
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment