pgsql: Fix off-by-one in pg_xlogdump's fuzzy_open_file().

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix off-by-one in pg_xlogdump's fuzzy_open_file().
Date: 2015-01-04 14:37:14
Message-ID: E1Y7mIs-0007oN-Di@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix off-by-one in pg_xlogdump's fuzzy_open_file().

In the unlikely case of stdin (fd 0) being closed, the off-by-one
would lead to pg_xlogdump failing to open files.

Spotted by Coverity.

Backpatch to 9.3 where pg_xlogdump was introduced.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/f0e2770956a8a6975dd70dd0bc3fdec073b50493

Modified Files
--------------
contrib/pg_xlogdump/pg_xlogdump.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2015-01-04 14:37:17 pgsql: Add missing va_end() call to a early exit in dmetaphone.c's Stri
Previous Message Andres Freund 2015-01-04 14:37:11 pgsql: Fix off-by-one in pg_xlogdump's fuzzy_open_file().