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

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix pg_ctl's readfile() to not go into infinite loop on an empty
Date: 2009-09-02 02:41:07
Message-ID: 20090902024107.3CD3475331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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.

Tags:
----
REL8_3_STABLE

Modified Files:
--------------
pgsql/src/bin/pg_ctl:
pg_ctl.c (r1.92.2.6 -> r1.92.2.7)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_ctl/pg_ctl.c?r1=1.92.2.6&r2=1.92.2.7)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-09-02 02:41:14 pgsql: Fix pg_ctl's readfile() to not go into infinite loop on an empty
Previous Message Tom Lane 2009-09-02 02:40:59 pgsql: Fix pg_ctl's readfile() to not go into infinite loop on an empty