mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
Fixed bug #35316 (Application exception trying to create COM object)
Fix some handler signatures causing memory corruption Various unicode fixes
This commit is contained in:
parent
1bec704ea7
commit
93ee6cd533
5 changed files with 16 additions and 13 deletions
|
@ -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;
|
||||
|
@ -357,7 +357,7 @@ static int saproxy_objects_compare(zval *object1, zval *object2 TSRMLS_DC)
|
|||
return -1;
|
||||
}
|
||||
|
||||
static int saproxy_object_cast(zval *readobj, zval *writeobj, int type, int should_free TSRMLS_DC)
|
||||
static int saproxy_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC)
|
||||
{
|
||||
return FAILURE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue