From 2221c3bbc1663af161608b29b385da046cf59f79 Mon Sep 17 00:00:00 2001 From: Victor Polevoy Date: Tue, 15 Jul 2025 17:40:35 +0200 Subject: [PATCH] Just limit strlcpy with BLCKSZ --- pgxn/neon/communicator_new.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgxn/neon/communicator_new.c b/pgxn/neon/communicator_new.c index a7454bb32f..dd0e6ebb2c 100644 --- a/pgxn/neon/communicator_new.c +++ b/pgxn/neon/communicator_new.c @@ -1021,7 +1021,7 @@ communicator_new_read_slru_segment( return -1; } - strlcpy(temp_path, path, Min(BLCKSZ, strlen(path) + 1)); + strlcpy(temp_path, path, BLCKSZ); request.read_slru_segment.destination_file_path.ptr = (uint8_t *) temp_path; elog(DEBUG5, "readslrusegment called for kind=%u, segno=%u, file_path=\"%s\"",