mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
12 lines
362 B
Diff
12 lines
362 B
Diff
--- a/env/env_open.c.old 2017-06-26 10:32:11.011419981 +0200
|
|
+++ b/env/env_open.c 2017-06-26 10:32:46.893721233 +0200
|
|
@@ -473,7 +473,7 @@
|
|
env->db_mode = mode == 0 ? DB_MODE_660 : mode;
|
|
|
|
/* Read the DB_CONFIG file. */
|
|
- if ((ret = __env_read_db_config(env)) != 0)
|
|
+ if (env->db_home != NULL && (ret = __env_read_db_config(env)) != 0)
|
|
return (ret);
|
|
|
|
/*
|