diff options
author | Rob Richards <rrichards@php.net> | 2006-12-24 10:00:59 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2006-12-24 10:00:59 +0000 |
commit | b7ec6f90e016da3a76f487f62b9694f3184dc2c6 (patch) | |
tree | b2bbb519c3808d3b5f83257b9c777c6b1aada350 /ext/com_dotnet/com_handlers.c | |
parent | 6077df1a03a91ce2fe17ff1a7bdeb979a1a5e842 (diff) | |
download | php-git-b7ec6f90e016da3a76f487f62b9694f3184dc2c6.tar.gz |
- fix bug #33386 (ScriptControl only sees last function of class): com_wrapper.c
- fix bug #37588 (COM Property propputref converts to PHP function
and can't be accesed): com_handlers.c
- fix bug #39596 (Creating Variant of type VT_ARRAY): com_variant.c
- add tests
Diffstat (limited to 'ext/com_dotnet/com_handlers.c')
-rw-r--r-- | ext/com_dotnet/com_handlers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_handlers.c b/ext/com_dotnet/com_handlers.c index a422b32041..6ca7061cb2 100644 --- a/ext/com_dotnet/com_handlers.c +++ b/ext/com_dotnet/com_handlers.c @@ -76,7 +76,7 @@ static void com_property_write(zval *object, zval *member, zval *value TSRMLS_DC convert_to_string_ex(&member); if (SUCCESS == php_com_do_invoke(obj, Z_STRVAL_P(member), Z_STRLEN_P(member), - DISPATCH_PROPERTYPUT, &v, 1, &value TSRMLS_CC)) { + DISPATCH_PROPERTYPUT|DISPATCH_PROPERTYPUTREF, &v, 1, &value TSRMLS_CC)) { VariantClear(&v); } } else { |