mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 01:58:33 -05:00
ITS#8844 use getpid() in mdb_env_close0()
This commit is contained in:
parent
7aa7fadc5b
commit
86a90cad72
1 changed files with 1 additions and 1 deletions
|
|
@ -5574,7 +5574,7 @@ mdb_env_close0(MDB_env *env, int excl)
|
|||
if (env->me_fd != INVALID_HANDLE_VALUE)
|
||||
(void) close(env->me_fd);
|
||||
if (env->me_txns) {
|
||||
MDB_PID_T pid = env->me_pid;
|
||||
MDB_PID_T pid = getpid();
|
||||
/* Clearing readers is done in this function because
|
||||
* me_txkey with its destructor must be disabled first.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue