diff --git a/HISTORY b/HISTORY index 0e455194..6a9d737a 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 80285a67..d0b148e4 100644 --- a/dbutils.c +++ b/dbutils.c @@ -2631,7 +2631,7 @@ witness_copy_node_records(PGconn *primary_conn, PGconn *witness_conn) commit_transaction(witness_conn); clear_node_info_list(&nodes); - + return true; }