pgsql: Silence another gcc 11 warning.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Silence another gcc 11 warning.
Date: 2021-01-28 22:19:38
Message-ID: E1l5Fda-0000Iy-66@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Silence another gcc 11 warning.

Per buildfarm and local experimentation, bleeding-edge gcc isn't
convinced that the MemSet in reorder_function_arguments() is safe.
Shut it up by adding an explicit check that pronargs isn't negative,
and by changing MemSet to memset. (It appears that either change is
enough to quiet the warning at -O2, but let's do both to be sure.)

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/4a9ce085ab30ad01ffe03eb1743da82b1be280c1

Modified Files
--------------
src/backend/optimizer/util/clauses.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2021-01-29 01:17:51 pgsql: Retire pg_standby.
Previous Message Alvaro Herrera 2021-01-28 19:58:30 pgsql: Remove bogus restriction from BEFORE UPDATE triggers