mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 22:50:51 -05:00
Forgot continuation key prefix
This commit is contained in:
parent
ba044208a6
commit
4189b89d7a
1 changed files with 2 additions and 0 deletions
|
|
@ -23,6 +23,8 @@ static void cont_alloc( Datum cont, Datum key )
|
|||
cont.dsize = 1 + sizeof(ID) + key.dsize;
|
||||
cont.dptr = ch_malloc( cont.dsize );
|
||||
|
||||
* (unsigned char *) cont.dptr = SLAP_INDEX_CONT_PREFIX;
|
||||
|
||||
memcpy( &((unsigned char *)cont.dptr)[1 + sizeof(ID)],
|
||||
key.dptr, key.dsize );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue