summaryrefslogtreecommitdiff
path: root/ext/dotnet/dotnet.cpp
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-08-13 16:40:12 +0000
committerAndi Gutmans <andi@php.net>2001-08-13 16:40:12 +0000
commita5afd0e9d04861e312f95d839c342110f300ca64 (patch)
tree6566a9b446dc8d44c9ef1a0643971589c15fead3 /ext/dotnet/dotnet.cpp
parent9a3d4e736c974213e2c0862d420907604e22e5d5 (diff)
downloadphp-git-a5afd0e9d04861e312f95d839c342110f300ca64.tar.gz
- ZE2 fixes
Diffstat (limited to 'ext/dotnet/dotnet.cpp')
-rw-r--r--ext/dotnet/dotnet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dotnet/dotnet.cpp b/ext/dotnet/dotnet.cpp
index b9af5a6d83..7461dd2a17 100644
--- a/ext/dotnet/dotnet.cpp
+++ b/ext/dotnet/dotnet.cpp
@@ -177,7 +177,7 @@ void php_DOTNET_call_function_handler(INTERNAL_FUNCTION_PARAMETERS, zend_propert
*object_handle = *return_value;
pval_copy_constructor(object_handle);
INIT_PZVAL(object_handle);
- zend_hash_index_update(object->value.obj.properties, 0, &object_handle, sizeof(pval *), NULL);
+ zend_hash_index_update(Z_OBJPROP_P(object), 0, &object_handle, sizeof(pval *), NULL);
pval_destructor(&function_name->element);
} else {
php_COM_call_function_handler(INTERNAL_FUNCTION_PARAM_PASSTHRU, property_reference);