Skip to content

Commit bffe2eb

Browse files
committed
Drop spurious Errcode() call
1 parent 9036e26 commit bffe2eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/liblmdb/mdb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4523,7 +4523,7 @@ mdb_env_setup_locks(MDB_env *env, char *lpath, int mode, int *excl)
45234523
if (rc == MDB_ERRCODE_ROFS && (env->me_flags & MDB_RDONLY)) {
45244524
return MDB_SUCCESS;
45254525
}
4526-
goto fail_errno;
4526+
goto fail;
45274527
}
45284528
#if ! ((MDB_CLOEXEC) || defined(_WIN32))
45294529
/* Lose record locks when exec*() */

0 commit comments

Comments
 (0)