diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-02 02:41:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-09-02 02:41:07 +0000 |
commit | bcdb5788953a40c216c8870c59d8299f6d796170 (patch) | |
tree | 9901a4ee46b4b73f7895402fc121b2450002476a | |
parent | d40ef0dc0ba6fc66261aa73f08484369e5165e85 (diff) | |
download | postgresql-bcdb5788953a40c216c8870c59d8299f6d796170.tar.gz postgresql-bcdb5788953a40c216c8870c59d8299f6d796170.zip |
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.
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index cf9bb4a639e..f2e8aaa8a98 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -4,7 +4,7 @@ * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.92.2.6 2009/01/28 11:19:40 mha Exp $ + * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.92.2.7 2009/09/02 02:41:07 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -299,7 +299,7 @@ static char ** readfile(const char *path) { FILE *infile; - int maxlength = 0, + int maxlength = 1, linelen = 0; int nlines = 0; char **result; |