Fix variable shadowing in procarray.c.
authorFujii Masao <fujii@postgresql.org>
Thu, 16 Sep 2021 04:06:21 +0000 (13:06 +0900)
committerFujii Masao <fujii@postgresql.org>
Thu, 16 Sep 2021 04:06:21 +0000 (13:06 +0900)
commitdc899146dbf0e1d23fb24155a5155826ddce34c9
tree8e318ae1403bf2956a95f62478fe81a3bdac8faa
parent64a62ebeeb84af2a51b963a1737f804a0fed4246
Fix variable shadowing in procarray.c.

ProcArrayGroupClearXid function has a parameter named "proc",
but the same name was used for its local variables. This commit fixes
this variable shadowing, to improve code readability.

Back-patch to all supported versions, to make future back-patching
easy though this patch is classified as refactoring only.

Reported-by: Ranier Vilela
Author: Ranier Vilela, Aleksander Alekseev
https://postgr.es/m/CAEudQAqyoTZC670xWi6w-Oe2_Bk1bfu2JzXz6xRfiOUzm7xbyQ@mail.gmail.com
src/backend/storage/ipc/procarray.c