diff options
author | Wez Furlong <wez@php.net> | 2004-07-27 22:17:40 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-07-27 22:17:40 +0000 |
commit | a783891e768fbe42a64410ee61054c129086d9f5 (patch) | |
tree | a09f8e5a5482cd747e12949ce7fb3fe43f095281 | |
parent | aa74430ee084283d32b081d589b857bb3e98ab17 (diff) | |
download | php-git-a783891e768fbe42a64410ee61054c129086d9f5.tar.gz |
that's not my copy of the exception ctor, do don't fiddle its flags.
-rw-r--r-- | ext/com_dotnet/com_extension.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_extension.c b/ext/com_dotnet/com_extension.c index 5148451460..c4679a82ee 100644 --- a/ext/com_dotnet/com_extension.c +++ b/ext/com_dotnet/com_extension.c @@ -194,7 +194,7 @@ PHP_MINIT_FUNCTION(com_dotnet) INIT_CLASS_ENTRY(ce, "com_exception", NULL); php_com_exception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(), NULL TSRMLS_CC); php_com_exception_class_entry->ce_flags |= ZEND_ACC_FINAL; - php_com_exception_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED; +// php_com_exception_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED; INIT_CLASS_ENTRY(ce, "com_safearray_proxy", NULL); php_com_saproxy_class_entry = zend_register_internal_class(&ce TSRMLS_CC); |