]> granicus.if.org Git - postgresql/commit
psql: Fix invalid memory access
authorPeter Eisentraut <peter_e@gmx.net>
Wed, 7 Mar 2012 21:46:41 +0000 (23:46 +0200)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 10 Mar 2012 22:51:07 +0000 (00:51 +0200)
commitebe608915cf9b6689b6dfcb92ddb31c8da765670
treee149565c664af8c24dc74bb8b2f26d130a310309
parent0e925196340bf9279238f780cc10125fca2a0733
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.
src/bin/psql/print.c