Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b2b8190

Browse files
committed
Add volatile qualifier missed in commit 2e616de.
Noted by Pavel Stehule Discussion: https://postgr.es/m/CAFj8pRAaGO5FX7bnP3E=mRssoK8y5T78x7jKy-vDiyS68L888Q@mail.gmail.com
1 parent cc8d415 commit b2b8190

File tree

1 file changed

+1
-1
lines changed
  • src/backend/utils/adt

1 file changed

+1
-1
lines changed

src/backend/utils/adt/xml.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3825,7 +3825,7 @@ xml_xmlnodetoxmltype(xmlNodePtr cur, PgXmlErrorContext *xmlerrcxt)
38253825

38263826
if (cur->type != XML_ATTRIBUTE_NODE && cur->type != XML_TEXT_NODE)
38273827
{
3828-
void (*nodefree) (xmlNodePtr) = NULL;
3828+
void (*volatile nodefree) (xmlNodePtr) = NULL;
38293829
volatile xmlBufferPtr buf = NULL;
38303830
volatile xmlNodePtr cur_copy = NULL;
38313831

0 commit comments

Comments
 (0)