From 86a90cad721cbdc0bb0a9c3bf15396f5c946ae95 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Wed, 2 May 2018 17:05:29 +0100 Subject: [PATCH] ITS#8844 use getpid() in mdb_env_close0() --- libraries/liblmdb/mdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index 9693e89..a487e15 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -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. *