summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2003-09-03 18:13:11 +0000
committerSebastian Bergmann <sebastian@php.net>2003-09-03 18:13:11 +0000
commitafdecc374d66eeeb36a4e87ac0f035726ba8f72b (patch)
tree3c8f0e5af5b8f4b5a05cdf199e4459bf91927377 /ext/dom/php_dom.c
parent7bbbd5035d316754c1eb9daefaec8d574456491a (diff)
downloadphp-git-afdecc374d66eeeb36a4e87ac0f035726ba8f72b.tar.gz
ZTS fix.
Diffstat (limited to 'ext/dom/php_dom.c')
-rw-r--r--ext/dom/php_dom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c
index bb8f8c2f54..c6870d628e 100644
--- a/ext/dom/php_dom.c
+++ b/ext/dom/php_dom.c
@@ -404,7 +404,7 @@ PHP_MINIT_FUNCTION(dom)
dom_domexception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(), NULL TSRMLS_CC);
dom_domexception_class_entry->ce_flags |= ZEND_ACC_FINAL;
dom_domexception_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED;
- zend_declare_property_long(dom_domexception_class_entry, "code", sizeof("code")-1, 0, ZEND_ACC_PUBLIC);
+ zend_declare_property_long(dom_domexception_class_entry, "code", sizeof("code")-1, 0, ZEND_ACC_PUBLIC TSRMLS_CC);
REGISTER_DOM_CLASS(ce, "domstringlist", NULL, php_dom_domstringlist_class_functions, dom_domstringlist_class_entry);