pgsql: psql: Fix invalid memory access - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: psql: Fix invalid memory access
Date
Msg-id E1S6WIR-000374-DM@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
psql: Fix invalid memory access

Due to an apparent thinko, when printing a table in expanded mode
(\x), space would be allocated for 1 slot plus 1 byte per line,
instead of 1 slot per line plus 1 slot for the NULL terminator.  When
the line count is small, reading or writing the terminator would
therefore access memory beyond what was allocated.

Branch
------
REL9_0_STABLE

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

Modified Files
--------------
src/bin/psql/print.c |    4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: ecpg: Fix off-by-one error in memory copying
Next
From: Tatsuo Ishii
Date:
Subject: pgsql: Add description for --no-locale and --text-search-config.