pgsql: Fix misuse of "volatile" in xml.c - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Fix misuse of "volatile" in xml.c
Date
Msg-id E1vzik3-003DYd-2y@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix misuse of "volatile" in xml.c

What should be used is not "volatile foo *ptr" but "foo *volatile ptr",
The incorrect (former) style means that what the pointer variable points
to is volatile.  The correct (latter) style means that the pointer
variable itself needs to be treated as volatile.  The latter style is
required to ensure a consistent treatment of these variables after a
longjmp with the TRY/CATCH blocks.

Some casts can be removed thanks to this change.

Issue introduced by 2e947217474c, so no backpatch is required.  A
similar set of issues has been fixed in 93001888d85c for contrib/xml2/.

Author: ChangAo Chen <cca5507@qq.com>
Discussion: https://postgr.es/m/tencent_5BE8DAD985EE140ED62EA728C8D4E1311F0A@qq.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6307b096e2599edfe238816118b3f365a73fd12a

Modified Files
--------------
src/backend/utils/adt/xml.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)


pgsql-committers by date:

Previous
From: Nathan Bossart
Date:
Subject: pgsql: pg_{dump,restore}: Refactor handling of conflicting options.
Next
From: Michael Paquier
Date:
Subject: pgsql: Switch to FATAL error for missing checkpoint record without back