Skip to content
Snippets Groups Projects
Commit 693ff85d authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

backend: Fix minor memory leak in configuration file processing

Just for consistency with the other code paths.

found by Coverity
parent b67ad046
No related branches found
No related tags found
No related merge requests found
......@@ -4095,6 +4095,7 @@ SelectConfigFiles(const char *userDoption, const char *progname)
{
write_stderr("%s cannot access the server configuration file \"%s\": %s\n",
progname, ConfigFileName, strerror(errno));
free(configdir);
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment