aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2014-01-21 11:42:37 -0500
committerRobert Haas <rhaas@postgresql.org>2014-01-21 11:42:37 -0500
commit033b2343fae9d8c9df124cde62087dcb481c9c5e (patch)
treed983aefcb24295d75531cf4f30e5e9015a4b78c2 /src
parent5709b8acc67d80584e9623a1d355374b580c95e8 (diff)
downloadpostgresql-033b2343fae9d8c9df124cde62087dcb481c9c5e.tar.gz
postgresql-033b2343fae9d8c9df124cde62087dcb481c9c5e.zip
Fix inadvertent semantics change in last patch to plug memory leaks.
Commit a5bca4ef034f71175d46462963af2329d22068c2 accidentally changed the semantics when the "skipping missing configuration file" is emitted, because it forced OK to true instead of leaving the value untouched. Spotted by Tom Lane.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/guc-file.l1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc-file.l b/src/backend/utils/misc/guc-file.l
index a5b9d6ac77c..e815a9bef9a 100644
--- a/src/backend/utils/misc/guc-file.l
+++ b/src/backend/utils/misc/guc-file.l
@@ -476,7 +476,6 @@ ParseConfigFile(const char *config_file, const char *calling_file, bool strict,
ereport(LOG,
(errmsg("skipping missing configuration file \"%s\"",
abs_path)));
- OK = true;
goto cleanup;
}