pgsql: Avoid passing NULL to memcmp() in lookups of zero-argument funct

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Avoid passing NULL to memcmp() in lookups of zero-argument funct
Дата
Msg-id E1Z8xww-0002UB-CX@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Avoid passing NULL to memcmp() in lookups of zero-argument functions.

A few places assumed they could pass NULL for the argtypes array when
looking up functions known to have zero arguments.  At first glance
it seems that this should be safe enough, since memcmp() is surely not
allowed to fetch any bytes if its count argument is zero.  However,
close reading of the C standard says that such calls have undefined
behavior, so we'd probably best avoid it.

Since the number of places doing this is quite small, and some other
places looking up zero-argument functions were already passing dummy
arrays, let's standardize on the latter solution rather than hacking
the function lookup code to avoid calling memcmp() in these cases.
I also added Asserts to catch any future violations of the new rule.

Given the utter lack of any evidence that this actually causes any
problems in the field, I don't feel a need to back-patch this change.

Per report from Piotr Stefaniak, though this is not his patch.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/0a52d378b03b7d5ab1d64627a87edaf5ed311c6c

Modified Files
--------------
src/backend/commands/event_trigger.c |    3 ++-
src/backend/commands/foreigncmds.c   |    3 ++-
src/backend/parser/parse_func.c      |    6 ++++++
src/backend/utils/adt/ruleutils.c    |    3 ++-
4 files changed, 12 insertions(+), 3 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Fix test_decoding's handling of nonexistant columns in old tuple
Следующее
От: Tatsuo Ishii
Дата:
Сообщение: pgsql: Fix function declaration style to respect the coding standard.