1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Fix inadvertent semantics change in last patch to plug memory leaks.

Commit a5bca4ef03 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.
This commit is contained in:
Robert Haas
2014-01-21 11:42:37 -05:00
parent efcdb625b3
commit 3888b73f9a

View File

@ -444,7 +444,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;
}