psql: Fix invalid memory access

Peter Eisentraut <peter_e@gmx.net>

Commit: ebe608915cf9b6689b6dfcb92ddb31c8da765670
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2012-03-10T22:51:07Z
Releases: 9.0.8
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.

Files

PathChange+/−
src/bin/psql/print.c modified +2 −2