mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-21 06:14:40 -05:00
Fix mdb_midl_shrink
This commit is contained in:
parent
d3f51fdcf7
commit
5af47adf6b
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ void mdb_midl_free(MDB_IDL ids)
|
|||
int mdb_midl_shrink( MDB_IDL *idp )
|
||||
{
|
||||
MDB_IDL ids = *idp;
|
||||
if (ids[-1] > MDB_IDL_UM_MAX) {
|
||||
if (*(--ids) > MDB_IDL_UM_MAX) {
|
||||
ids = realloc(ids, (MDB_IDL_UM_MAX+1) * sizeof(MDB_ID));
|
||||
*ids++ = MDB_IDL_UM_MAX;
|
||||
*idp = ids;
|
||||
|
|
|
|||
Loading…
Reference in a new issue