mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-01 23:54:12 +08:00
mdbx: refine mode bits while auto-creating LCK-file.
Change-Id: Ideb603cf6a1709188b3c121a9d6bf2097b9c244d
This commit is contained in:
parent
e6eeed6cf2
commit
e6f5998b76
@ -10179,7 +10179,13 @@ int __cold mdbx_env_open(MDBX_env *env, const char *pathname, unsigned flags,
|
||||
rc = errno;
|
||||
goto bailout;
|
||||
}
|
||||
mode = st.st_mode;
|
||||
mode = (/* inherit read permissions for group and others */ st.st_mode &
|
||||
(S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)) |
|
||||
/* always add read/write/search for owner */ S_IRUSR | S_IWUSR |
|
||||
((st.st_mode & S_IRGRP) ? /* +write if readable by group */ S_IWGRP
|
||||
: 0) |
|
||||
((st.st_mode & S_IROTH) ? /* +write if readable by others */ S_IWOTH
|
||||
: 0);
|
||||
}
|
||||
#endif /* !Windows */
|
||||
const int lck_rc = mdbx_setup_lck(env, lck_pathname, mode);
|
||||
|
Loading…
x
Reference in New Issue
Block a user