pgsql: Suppress some "variable might be clobbered by longjmp" warnings.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Suppress some "variable might be clobbered by longjmp" warnings.
Date: 2011-03-07 02:16:09
Message-ID: E1PwPzV-00079A-Lw@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Suppress some "variable might be clobbered by longjmp" warnings.

Seen with an older gcc version. I'm not sure these represent any real
risk factor, but still a bit scary. Anyway we have lots of other
volatile-marked variables in this code, so a couple more won't hurt.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4172bd88300524efd1728c247fbc1eff3c1ca6ed

Modified Files
--------------
src/pl/plperl/Util.xs | 37 +++++++++++++++++++------------------
src/pl/plpython/plpython.c | 6 +++---
2 files changed, 22 insertions(+), 21 deletions(-)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2011-03-07 02:57:38 pgsql: Tighten pg_upgrade check for pre-8.4 toast table name matching.
Previous Message Tom Lane 2011-03-07 01:14:20 pgsql: Fix a couple more missing "static" markers.