mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-12 07:52:55 +00:00
Just limit strlcpy with BLCKSZ
This commit is contained in:
@@ -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\"",
|
||||
|
||||
Reference in New Issue
Block a user