summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2004-07-06 08:01:07 +0000
committerSebastian Bergmann <sebastian@php.net>2004-07-06 08:01:07 +0000
commitb5aa8db6a36447973ad9c023e182c263fd39eb29 (patch)
tree629dd7fbf6cbb6a630a5d78c3e555ba1edca5e2c
parent8ad22e42796fa7879ab87fd7978c83704948fda3 (diff)
downloadphp-git-b5aa8db6a36447973ad9c023e182c263fd39eb29.tar.gz
Fix ZTS build.
-rw-r--r--ext/soap/soap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c
index 316d3c434c..721b03149f 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -1020,7 +1020,7 @@ PHP_METHOD(SoapServer, setClass)
if (Z_TYPE_PP(argv[0]) == IS_STRING) {
#ifdef ZEND_ENGINE_2
- found = zend_lookup_class(Z_STRVAL_PP(argv[0]), Z_STRLEN_PP(argv[0]), &ce);
+ found = zend_lookup_class(Z_STRVAL_PP(argv[0]), Z_STRLEN_PP(argv[0]), &ce TSRMLS_CC);
#else
char *class_name = estrdup(Z_STRVAL_PP(argv[0]));
found = zend_hash_find(EG(class_table), php_strtolower(class_name, Z_STRLEN_PP(argv[0])), Z_STRLEN_PP(argv[0]) + 1, (void **)&ce);