mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
mdb_page_malloc(): Move VGMEMP_ALLOC before memset
This commit is contained in:
parent
ce2a0d4016
commit
1f191ba930
@ -1389,11 +1389,11 @@ mdb_page_malloc(MDB_txn *txn, unsigned num)
|
||||
off = sz - psize;
|
||||
}
|
||||
if ((ret = malloc(sz)) != NULL) {
|
||||
VGMEMP_ALLOC(env, ret, sz);
|
||||
if (!(env->me_flags & MDB_NOMEMINIT)) {
|
||||
memset((char *)ret + off, 0, psize);
|
||||
ret->mp_pad = 0;
|
||||
}
|
||||
VGMEMP_ALLOC(env, ret, sz);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user