diff options
author | Andi Gutmans <andi@php.net> | 2001-08-13 16:40:12 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-08-13 16:40:12 +0000 |
commit | a5afd0e9d04861e312f95d839c342110f300ca64 (patch) | |
tree | 6566a9b446dc8d44c9ef1a0643971589c15fead3 /ext/dotnet/dotnet.cpp | |
parent | 9a3d4e736c974213e2c0862d420907604e22e5d5 (diff) | |
download | php-git-a5afd0e9d04861e312f95d839c342110f300ca64.tar.gz |
- ZE2 fixes
Diffstat (limited to 'ext/dotnet/dotnet.cpp')
-rw-r--r-- | ext/dotnet/dotnet.cpp | 2 |
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); |