pgsql: Fix undersized result buffer in pset_quoted_string().

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix undersized result buffer in pset_quoted_string().
Дата
Msg-id E1XiX4W-0003Aw-L2@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix undersized result buffer in pset_quoted_string().

The malloc request was 1 byte too small for the worst-case output.
This seems relatively unlikely to cause any problems in practice,
as the worst case only occurs if the input string contains no
characters other than single-quote or newline, and even then
malloc alignment padding would probably save the day.  But it's
definitely a bug.

David Rowley

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/9711fa06081da230e62fa52147c49ccf7b9ccbe2

Modified Files
--------------
src/bin/psql/command.c |    2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix undersized result buffer in pset_quoted_string().
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Avoid unportable strftime() behavior in pg_dump/pg_dumpall.