diff --git a/HISTORY b/HISTORY index f1109216..13e94a86 100644 --- a/HISTORY +++ b/HISTORY @@ -1,5 +1,6 @@ 4.0.5 2018-??-?? repmgr: fix display of conninfo parsing error messages (Ian) + repmgrd: fix memory leaks in witness code (AndrzejNowicki, Martín) 4.0.4 2018-03-09 repmgr: add "standby clone --recovery-conf-only" option; GitHub #382 (Ian) diff --git a/dbutils.c b/dbutils.c index e246af2f..2fa3319a 100644 --- a/dbutils.c +++ b/dbutils.c @@ -2634,7 +2634,7 @@ witness_copy_node_records(PGconn *primary_conn, PGconn *witness_conn) commit_transaction(witness_conn); clear_node_info_list(&nodes); - + return true; }