]> granicus.if.org Git - postgresql/commit
Make walsender always initialize the buffers.
authorFujii Masao <fujii@postgresql.org>
Tue, 21 Feb 2017 18:11:58 +0000 (03:11 +0900)
committerFujii Masao <fujii@postgresql.org>
Tue, 21 Feb 2017 18:11:58 +0000 (03:11 +0900)
commit1d04a59be31bf004b880226be0e3fe84acff2815
tree4f5e82daf119952374f35034122e8613b678d27d
parentd36537008a8d53853d2fda49913cb54fa6e28f94
Make walsender always initialize the buffers.

Walsender uses the local buffers for each outgoing and incoming message.
Previously when creating replication slot, walsender forgot to initialize
one of them and which can cause the segmentation fault error. To fix this
issue, this commit changes walsender so that it always initialize them
before it executes the requested replication command.

Back-patch to 9.4 where replication slot was introduced.

Problem report and initial patch by Stas Kelvich, modified by me.
Report: https://www.postgresql.org/message-id/A1E9CB90-1FAC-4CAD-8DBA-9AA62A6E97C5@postgrespro.ru
src/backend/replication/walsender.c