1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-24 00:23:06 +03:00

remove redundant initializations

Reported-by: Ranier Vilela

Discussion: https://postgr.es/m/CAEudQAo1+AcGppxDSg8k+zF4+Kv+eJyqzEDdbpDg58-=MQcerQ@mail.gmail.com

Author: Ranier Vilela

Backpatch-through: master
This commit is contained in:
Bruce Momjian
2020-09-03 22:57:35 -04:00
parent 844c05abc3
commit e36e936e0e
5 changed files with 7 additions and 6 deletions

View File

@@ -476,7 +476,7 @@ MemoryContextMemAllocated(MemoryContext context, bool recurse)
if (recurse)
{
MemoryContext child = context->firstchild;
MemoryContext child;
for (child = context->firstchild;
child != NULL;