Fix replication delay worker segfault when application_name is an empty string.
authorTatsuo Ishii <ishii@sraoss.co.jp>
Thu, 12 Dec 2019 07:33:18 +0000 (16:33 +0900)
committerTatsuo Ishii <ishii@sraoss.co.jp>
Thu, 12 Dec 2019 07:33:18 +0000 (16:33 +0900)
commit638d2bbb0210b1785f852f1cd95c3c175a8a78ff
treec87673e3a0761b61b45fd929f18fdc3ca5e83ba7
parent54c30a3fc48087878c54c2603ff4c111856ea98d
Fix replication delay worker segfault when application_name is an empty string.

The process calls do_query() to obtain the query result against
pg_stat_replication_view.  If user sets application_name to an empty
string, the result data row packet length will be 0. However
do_query() did not consider the length == 0 case, which resulted in
giving NULL pointer to strcmp() which is called from the worker
process. That means the bug is not specific to this case (a new
feature added in Pgpool-II 4.1) but it potentially affects many other
places where do_query() gets called, although it had not been reported
in the field. So this fix should be applied to all supported branches.

Per bug 565.
src/protocol/pool_process_query.c