Robert Haas <[email protected]> writes:
> Plug more memory leaks when reloading config file.

Hm, not too sure about this hunk:
 
        ereport(LOG,
                (errmsg("skipping missing configuration file \"%s\"",
                        abs_path)));
-       return OK;
+       OK = true;
+       goto cleanup;
    }
 
That's changing the semantics, no?  That is, what if OK was previously
false?  Seems like this coding might be masking an intended failure
report.  I'd have expected just "goto cleanup" without changing OK.

                        regards, tom lane


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

Reply via email to