summaryrefslogtreecommitdiff
path: root/ext/soap/php_xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r--ext/soap/php_xml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c
index c3ae5ffb81..3746c805e1 100644
--- a/ext/soap/php_xml.c
+++ b/ext/soap/php_xml.c
@@ -78,7 +78,7 @@ static void soap_Comment(void *ctx, const xmlChar *value)
xmlDocPtr soap_xmlParseFile(const char *filename)
{
- xmlParserCtxtPtr ctxt = NULL;
+ xmlParserCtxtPtr ctxt = NULL;
xmlDocPtr ret;
/*
@@ -105,7 +105,7 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
}
xmlFreeParserCtxt(ctxt);
} else {
- ret = NULL;
+ ret = NULL;
}
/*
@@ -120,7 +120,7 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
{
- xmlParserCtxtPtr ctxt = NULL;
+ xmlParserCtxtPtr ctxt = NULL;
xmlDocPtr ret;
/*
@@ -146,7 +146,7 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
}
xmlFreeParserCtxt(ctxt);
} else {
- ret = NULL;
+ ret = NULL;
}
/*