diff options
| author | Wez Furlong <wez@php.net> | 2004-05-03 18:19:07 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2004-05-03 18:19:07 +0000 |
| commit | 92d87a6a8d100ea361af3344192410630c75accd (patch) | |
| tree | 5f396881b3786599bdfe545c82c1c3ca4e66d91c /ext/com_dotnet/com_saproxy.c | |
| parent | 8ca144bba555a9fcbe69fe4c9007407e9bfc78e3 (diff) | |
| download | php-git-92d87a6a8d100ea361af3344192410630c75accd.tar.gz | |
Fix problem when assigning to a variable that holds an instance of
a COM/VARIANT/DOTNET object.
Diffstat (limited to 'ext/com_dotnet/com_saproxy.c')
| -rw-r--r-- | ext/com_dotnet/com_saproxy.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c index cf28d1e647..1187f51150 100644 --- a/ext/com_dotnet/com_saproxy.c +++ b/ext/com_dotnet/com_saproxy.c @@ -244,6 +244,7 @@ static void saproxy_write_dimension(zval *object, zval *offset, zval *value TSRM } } +#if 0 static void saproxy_object_set(zval **property, zval *value TSRMLS_DC) { } @@ -253,6 +254,7 @@ static zval *saproxy_object_get(zval *property TSRMLS_DC) /* Not yet implemented in the engine */ return NULL; } +#endif static int saproxy_property_exists(zval *object, zval *member, int check_empty TSRMLS_DC) { @@ -295,7 +297,7 @@ static int saproxy_call_method(char *method, INTERNAL_FUNCTION_PARAMETERS) static union _zend_function *saproxy_constructor_get(zval *object TSRMLS_DC) { - /* user cannot instanciate */ + /* user cannot instantiate */ return NULL; } @@ -328,8 +330,8 @@ zend_object_handlers php_com_saproxy_handlers = { saproxy_read_dimension, saproxy_write_dimension, NULL, - saproxy_object_get, - saproxy_object_set, + NULL, //saproxy_object_get, + NULL, //saproxy_object_set, saproxy_property_exists, saproxy_property_delete, saproxy_dimension_exists, |
