| From: | Peter Eisentraut <peter_e(at)gmx(dot)net> |
|---|---|
| To: | pgsql-committers(at)postgresql(dot)org |
| Subject: | pgsql: psql: Fix invalid memory access |
| Date: | 2012-03-11 00:05:59 |
| Message-ID: | [email protected] |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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
------
REL8_4_STABLE
Details
-------
http://git.postgresql.org/pg/commitdiff/8136842f22c7026832b561481063f87f32a41b18
Modified Files
--------------
src/bin/psql/print.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tatsuo Ishii | 2012-03-11 10:19:33 | pgsql: Add description for --no-locale and --text-search-config. |
| Previous Message | Tom Lane | 2012-03-10 23:37:07 | pgsql: Restructure SPGiST opclass interface API to support whole-index |