diff options
author | Sebastian Bergmann <sebastian@php.net> | 2005-08-12 14:08:28 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2005-08-12 14:08:28 +0000 |
commit | 52b001cc05fa1fb085aca9189a108d7029e9c463 (patch) | |
tree | 0d5070c5f24f817647ed245fd6af4409498f3431 /ext/dom/php_dom.c | |
parent | 3aad9e2048217f0161f6a9fb50ac334f44d8fcc1 (diff) | |
download | php-git-52b001cc05fa1fb085aca9189a108d7029e9c463.tar.gz |
ZTS fixes.
Diffstat (limited to 'ext/dom/php_dom.c')
-rw-r--r-- | ext/dom/php_dom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c index c5c6343085..051a7841ab 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -485,7 +485,7 @@ PHP_MINIT_FUNCTION(dom) zend_hash_init(&classes, 0, NULL, NULL, 1); INIT_CLASS_ENTRY(ce, "DOMException", php_dom_domexception_class_functions); - dom_domexception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(), NULL TSRMLS_CC); + dom_domexception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC); dom_domexception_class_entry->ce_flags |= ZEND_ACC_FINAL; zend_declare_property_long(dom_domexception_class_entry, "code", sizeof("code")-1, 0, ZEND_ACC_PUBLIC TSRMLS_CC); |