From f0aacc09d28fe6ef5822af55aef7d052f378a9f4 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 18 Jan 2004 23:19:36 +0000 Subject: [PATCH] Fix a warning --- ext/soap/php_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.50.1