diff options
author | Rob Richards <rrichards@php.net> | 2005-11-27 12:19:04 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2005-11-27 12:19:04 +0000 |
commit | 934e19107de20613cd9bb909d3806d19ce06ace8 (patch) | |
tree | f75647f1fe241c643f3cb9a7ac11ae77753d2e92 /ext/com_dotnet/com_saproxy.c | |
parent | c37b13e0db0288e9131c1e74d2882be0570f0c64 (diff) | |
download | php-git-934e19107de20613cd9bb909d3806d19ce06ace8.tar.gz |
Fixed bug #35316 (Application exception trying to create COM object)
Diffstat (limited to 'ext/com_dotnet/com_saproxy.c')
-rw-r--r-- | ext/com_dotnet/com_saproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c index 15b217fa68..d988875273 100644 --- a/ext/com_dotnet/com_saproxy.c +++ b/ext/com_dotnet/com_saproxy.c @@ -323,7 +323,7 @@ static HashTable *saproxy_properties_get(zval *object TSRMLS_DC) return NULL; } -static union _zend_function *saproxy_method_get(zval *object, char *name, int len TSRMLS_DC) +static union _zend_function *saproxy_method_get(zval **object, char *name, int len TSRMLS_DC) { /* no methods */ return NULL; |