From 9aac56b8ac8df6837fb6fc0f14bd7a76bd83a631 Mon Sep 17 00:00:00 2001 From: Maxim Orlov Date: Fri, 6 Dec 2024 18:46:09 +0300 Subject: [PATCH v2] Use pstrdup for remote_host and remote_port save in port structure --- src/backend/postmaster/postmaster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index b42aae41fce..81f97113915 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -4343,8 +4343,8 @@ BackendInitialize(Port *port) * Save remote_host and remote_port in port structure (after this, they * will appear in log_line_prefix data for log messages). */ - port->remote_host = strdup(remote_host); - port->remote_port = strdup(remote_port); + port->remote_host = pstrdup(remote_host); + port->remote_port = pstrdup(remote_port); /* And now we can issue the Log_connections message, if wanted */ if (Log_connections) -- 2.47.0