diff options
author | Edin Kadribasic <edink@php.net> | 2006-10-06 12:23:30 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2006-10-06 12:23:30 +0000 |
commit | 480e788d95e88c8ef7da80ff1ca48aa29c1dcf90 (patch) | |
tree | d9317c978617db9d52b170974aca2c8c8f3c563c | |
parent | f74b1ec9b0f347281226204150031245b0f4b7a1 (diff) | |
download | php-git-480e788d95e88c8ef7da80ff1ca48aa29c1dcf90.tar.gz |
Fix for #38985 (Wez)
-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 a710ada588..12628098d6 100644 --- a/ext/com_dotnet/com_handlers.c +++ b/ext/com_dotnet/com_handlers.c @@ -537,7 +537,7 @@ static int com_object_cast(zval *readobj, zval *writeobj, int type TSRMLS_DC) return SUCCESS; } - return FAILURE; + return zend_std_cast_object_tostring(readobj, writeobj, type TSRMLS_CC); } static int com_object_count(zval *object, long *count TSRMLS_DC) |