Skip to content
Snippets Groups Projects
Commit 4189b89d authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Forgot continuation key prefix

parent ba044208
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
......
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