Add volatile qualifier missed in commit 2e616dee9.

Noted by Pavel Stehule

Discussion: https://postgr.es/m/CAFj8pRAaGO5FX7bnP3E=mRssoK8y5T78x7jKy-vDiyS68L888Q@mail.gmail.com
This commit is contained in:
Tom Lane 2019-04-01 14:37:25 -04:00
parent cc8d415117
commit b2b819019f
1 changed files with 1 additions and 1 deletions

View File

@ -3825,7 +3825,7 @@ xml_xmlnodetoxmltype(xmlNodePtr cur, PgXmlErrorContext *xmlerrcxt)
if (cur->type != XML_ATTRIBUTE_NODE && cur->type != XML_TEXT_NODE)
{
void (*nodefree) (xmlNodePtr) = NULL;
void (*volatile nodefree) (xmlNodePtr) = NULL;
volatile xmlBufferPtr buf = NULL;
volatile xmlNodePtr cur_copy = NULL;