pgsql: Remove dead assignment to local variable.

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove dead assignment to local variable.
Date: 2021-07-12 08:16:20
Message-ID: E1m2r6y-0007B2-3u@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove dead assignment to local variable.

This should have been removed in commit 7e30c186da, which split the loop
into two. Only the first loop uses the 'from' variable; updating it in
the second loop is bogus. It was never read after the first loop, so this
was harmless and surely optimized away by the compiler, but let's be tidy.

Backpatch to all supported versions.

Author: Ranier Vilela
Discussion: https://www.postgresql.org/message-id/CAEudQAoWq%2BAL3BnELHu7gms2GN07k-np6yLbukGaxJ1vY-zeiQ%40mail.gmail.com

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/2c27cc26592a3f4f6ad1300d976073a256c57c9b

Modified Files
--------------
src/backend/access/nbtree/nbtxlog.c | 1 -
1 file changed, 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2021-07-12 20:21:14 pgsql: doc: Fix typo in function prototype
Previous Message Peter Eisentraut 2021-07-12 06:57:52 pgsql: doc: Make release note entries more accurate