Обсуждение: pgsql: Fix off-by-one in pg_xlogdump's fuzzy_open_file().

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

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

От
Andres Freund
Дата:
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_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/835a48702e550b6c9958bb053aa6c458971536d0

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