From: Marcus Boerger Date: Sun, 18 Jan 2004 23:19:36 +0000 (+0000) Subject: Fix a warning X-Git-Tag: php_ibase_before_split~122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0aacc09d28fe6ef5822af55aef7d052f378a9f4;p=php Fix a warning --- diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 23f8c8c08a..b898035898 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -73,7 +73,6 @@ encodePtr get_encoder(sdlPtr sdl, const char *ns, const char *type) { encodePtr enc = NULL; char *nscat; - TSRMLS_FETCH(); nscat = emalloc(strlen(ns) + strlen(type) + 2); sprintf(nscat, "%s:%s", ns, type); @@ -303,6 +302,7 @@ static void load_wsdl_ex(char *struri, sdlCtx *ctx, int include) xmlNodePtr root, definitions, trav; xmlAttrPtr targetNamespace; int old_error_reporting; + TSRMLS_FETCH(); /* TODO: WSDL Caching */