Обсуждение: pgsql: Fix pg_ctl's readfile() to not go into infinite loop on an empty

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

pgsql: Fix pg_ctl's readfile() to not go into infinite loop on an empty

От
tgl@postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Fix pg_ctl's readfile() to not go into infinite loop on an empty file
(could happen if either postgresql.conf or postmaster.opts is empty).
It's been broken since the C version was written for 8.0, so patch
all the way back.

initdb's copy of the function is broken in the same way, but it's
less important there since the input files should never be empty.
Patch that in HEAD only, and also fix some cosmetic differences that
crept into that copy of the function.

Per report from Corry Haines and Jeff Davis.

Modified Files:
--------------
    pgsql/src/bin/initdb:
        initdb.c (r1.173 -> r1.174)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/initdb/initdb.c?r1=1.173&r2=1.174)
    pgsql/src/bin/pg_ctl:
        pg_ctl.c (r1.112 -> r1.113)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_ctl/pg_ctl.c?r1=1.112&r2=1.113)