]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix variable shadowing in procarray.c.
authorFujii Masao <fujii@postgresql.org>
Thu, 16 Sep 2021 04:08:31 +0000 (13:08 +0900)
committerFujii Masao <fujii@postgresql.org>
Thu, 16 Sep 2021 04:08:31 +0000 (13:08 +0900)
commit9b2cc7856c40f3558b787fb1e170d551860f3b99
tree9f8640580528ee547b4359e8a010a7c6bbc74034
parenta460f7eb3d5ab269fa72f0b4350e561ec158b0e7
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