pgsql: Remove redundant initialization of a local variable.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Remove redundant initialization of a local variable.
Дата
Msg-id E1end8d-00075d-5G@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove redundant initialization of a local variable.

In what was doubtless a typo, commit bf6c614a2 introduced a duplicate
initialization of a local variable.  This made Coverity unhappy, as well
as pretty much anybody reading the code.  We don't even have a real use
for the local variable, so just remove it.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8c44802b6ed4846accb08e2ffe93040b8b42aae9

Modified Files
--------------
src/backend/executor/nodeGroup.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Remove redundant function declaration
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Remove bogus "extern" annotations on function definitions.