Use strlcpy instead of memcpy for copying the slot name in pgstat.c.
authorAmit Kapila <akapila@postgresql.org>
Fri, 6 Nov 2020 02:42:48 +0000 (08:12 +0530)
committerAmit Kapila <akapila@postgresql.org>
Fri, 6 Nov 2020 02:42:48 +0000 (08:12 +0530)
commit4f841ce3f7f4d429a3a275f82745d63c78cde4b2
tree67d3968a270d60ac09715ecbfc68c43e1f92a665
parentefc5dcfd8ad4e1df633025d8a91b64cd44d93f42
Use strlcpy instead of memcpy for copying the slot name in pgstat.c.

There is no outright bug here but it is better to be consistent with the
usage at other places in the same file. In the passing, fix a wrong
assertion in pgstat_recv_replslot.

Author: Kyotaro Horiguchi
Reviewed-by: Sawada Masahiko and Amit Kapila
Discussion: https://postgr.es/m/20201104.175523.1704166915688949637.horikyota.ntt@gmail.com
src/backend/postmaster/pgstat.c