mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-26 16:46:28 +00:00
repmgrd: prevent segfault if no configfile provided
This commit is contained in:
@@ -52,7 +52,7 @@ load_config(const char *config_file, bool verbose, bool terse, t_configuration_o
|
|||||||
* provides a configuration file, they'll want to make sure it's
|
* provides a configuration file, they'll want to make sure it's
|
||||||
* used and not fall back to any of the defaults.
|
* used and not fall back to any of the defaults.
|
||||||
*/
|
*/
|
||||||
if (config_file[0])
|
if (config_file != NULL && config_file[0] != '\0')
|
||||||
{
|
{
|
||||||
strncpy(config_file_path, config_file, MAXPGPATH);
|
strncpy(config_file_path, config_file, MAXPGPATH);
|
||||||
canonicalize_path(config_file_path);
|
canonicalize_path(config_file_path);
|
||||||
|
|||||||
Reference in New Issue
Block a user