From 113f06924064edb956e8341120bdbc84c7019e1e Mon Sep 17 00:00:00 2001 From: Georgy Shelkovy Date: Thu, 28 May 2026 11:41:01 +0500 Subject: [PATCH] Fix compilation of src/interfaces/libpq/fe-connect.c Commit c0cb87f added a call to the pfree function in the parseServiceFile function in src/interfaces/libpq/fe-connect.c, while the earlier commit 7e46c18 replaced the postgres_fe.h include with c.h. Add the missing common/fe_memutils.h include. --- src/interfaces/libpq/fe-connect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 4a270a832a99..f1b25ff26155 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -22,6 +22,7 @@ * which only defines FRONTEND besides including "c.h" */ #include "c.h" +#include "common/fe_memutils.h" #ifndef WIN32 #include