summary refs log tree commit diff
path: root/pkgs/development/libraries/db/CVE-2017-10140-cwd-db_config.patch
blob: 652e962bbe1820760e1df483a16ec41b6a5a9314 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- db-5.3.28/src/env/env_open.c.old	2017-06-26 10:32:11.011419981 +0200
+++ db-5.3.28/src/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);
 
 	/*