Обсуждение: pgsql: Avoid 0-length memcpy to NULL with EXEC_BACKEND

Поиск
Список
Период
Сортировка

pgsql: Avoid 0-length memcpy to NULL with EXEC_BACKEND

От
Heikki Linnakangas
Дата:
Avoid 0-length memcpy to NULL with EXEC_BACKEND

memcpy(NULL, src, 0) is forbidden by POSIX, even though every
production version of libc allows it. Let's be tidy.

Per report from Thomas Munro, running UBSan with EXEC_BACKEND.
Backpatch to v17, where this code was added.

Discussion:
https://www.postgresql.org/message-id/CA%2BhUKG%2Be-dV7YWBzfBZXsgovgRuX5VmvmOT%2Bv0aXiZJ-EKbXcw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f3412a61f3f92d795ce0c8bb715831ec02124bfb

Modified Files
--------------
src/backend/postmaster/launch_backend.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)