diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-02-06 16:54:34 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-02-06 16:54:34 +0000 |
commit | 79dc8d5ef69ff73ec27cd4c25bc1cf24fe5f8a10 (patch) | |
tree | fa43ad2bb07312bdd02b6eaff76d91ee6b931e45 /ext/soap/php_sdl.c | |
parent | 59ab20b23bf1602ef1a911e7c5be8491723dfe77 (diff) | |
download | php-git-79dc8d5ef69ff73ec27cd4c25bc1cf24fe5f8a10.tar.gz |
fix
Diffstat (limited to 'ext/soap/php_sdl.c')
-rw-r--r-- | ext/soap/php_sdl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index a7636dd622..0ad9b63789 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -295,7 +295,7 @@ static void wsdl_soap_binding_body(sdlCtx* ctx, xmlNodePtr node, char* wsdl_soap FOREACHNODEEX(trav, "header", wsdl_soap_namespace, header) { xmlAttrPtr tmp; xmlNodePtr *message, part; - char *ctype, *ns; + char *ctype; sdlSoapBindingFunctionHeaderPtr h; smart_str key = {0}; @@ -389,7 +389,7 @@ static HashTable* wsdl_message(sdlCtx *ctx, char* message_name) { xmlNodePtr trav, part, message = NULL, *tmp; HashTable* parameters = NULL; - char *ns, *ctype; + char *ctype; ctype = strrchr(message_name,':'); if (ctype == NULL) { @@ -475,7 +475,7 @@ static sdlPtr load_wsdl(char *struri) xmlAttrPtr type, name, bindingAttr, location; xmlNodePtr portType, operation; xmlNodePtr address, binding, trav2; - char *ns, *ctype; + char *ctype; sdlBindingPtr tmpbinding; char *wsdl_soap_namespace = NULL; |