summaryrefslogtreecommitdiff
path: root/ext/soap/php_xml.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2004-02-13 15:19:09 +0000
committerDmitry Stogov <dmitry@php.net>2004-02-13 15:19:09 +0000
commitb21756c1ca7ce2b3a318669810ab759c4f6c812f (patch)
tree8aa866a67af2b81f17af9db1e0678d1897d64276 /ext/soap/php_xml.c
parent16136dfe93e9d08f22c0a2990ead55bbe9f59b9e (diff)
downloadphp-git-b21756c1ca7ce2b3a318669810ab759c4f6c812f.tar.gz
Source cleanup
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;
}
/*