diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-07 14:34:41 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-07 14:34:41 +0000 |
commit | f7513855b335e9346b3699a15050bbc2250130bc (patch) | |
tree | 15af9b8f8ba0df44cf6afeb0728f1b9a83cbac98 /ext/domxml | |
parent | 928c260c57d1b8d8d5284ad8bb7f00200f23967a (diff) | |
download | php-git-f7513855b335e9346b3699a15050bbc2250130bc.tar.gz |
Fixed ZTS build with ZE2.
Diffstat (limited to 'ext/domxml')
-rw-r--r-- | ext/domxml/php_domxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 3aef2a068d..e3b6a6ea81 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -782,7 +782,7 @@ void *php_xsltstylesheet_get_object(zval *wrapper, int rsrc_type1, int rsrc_type return obj; } -static void php_xsltstylesheet_set_object(zval *wrapper, void *obj, int rsrc_type) +static void php_xsltstylesheet_set_object(zval *wrapper, void *obj, int rsrc_type TSRMLS_DC) { zval *handle, *addr; @@ -4992,7 +4992,7 @@ static zval *php_xsltstylesheet_new(xsltStylesheetPtr obj, int *found TSRMLS_DC) object_init_ex(wrapper, domxsltstylesheet_class_entry); rsrc_type = le_domxsltstylesheetp; - php_xsltstylesheet_set_object(wrapper, (void *) obj, rsrc_type); + php_xsltstylesheet_set_object(wrapper, (void *) obj, rsrc_type TSRMLS_CC); return (wrapper); } |