diff options
author | Marcus Boerger <helly@php.net> | 2004-01-21 07:07:34 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-01-21 07:07:34 +0000 |
commit | b77413bdd0c2aeb75318d11925fab5fe901926dd (patch) | |
tree | 61c37a549457d8f6e4137e192458330ec379e2c9 | |
parent | e23a1b8a5cc627891a4ada4133a1a0e1d12c5d5d (diff) | |
download | php-git-b77413bdd0c2aeb75318d11925fab5fe901926dd.tar.gz |
Fix TSRM
-rw-r--r-- | ext/soap/php_encoding.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index b4acf1001a..16b2470282 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -177,6 +177,7 @@ void whiteSpace_collapse(char* str) xmlNodePtr master_to_xml(encodePtr encode, zval *data, int style) { xmlNodePtr node = NULL; + TSRMLS_FETCH(); if (encode == NULL) { encode = get_conversion(UNKNOWN_TYPE); |