diff options
author | Harald Radi <phanto@php.net> | 2001-09-10 09:25:32 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2001-09-10 09:25:32 +0000 |
commit | 21b9a2ca2a99432e31bb8eba62ce57b4db0ebbc4 (patch) | |
tree | 26654676423e75fda19389b9070878645ad47394 /ext/com/conversion.c | |
parent | d1a2dbfd9dc005bb8b07ab63c7086978f71fd7c7 (diff) | |
download | php-git-21b9a2ca2a99432e31bb8eba62ce57b4db0ebbc4.tar.gz |
removed ->is_ref check, doesn't make sense and causes bugs
Diffstat (limited to 'ext/com/conversion.c')
-rw-r--r-- | ext/com/conversion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com/conversion.c b/ext/com/conversion.c index 524888a37d..18ce7f17b8 100644 --- a/ext/com/conversion.c +++ b/ext/com/conversion.c @@ -86,7 +86,7 @@ PHPAPI void php_pval_to_variant(pval *pval_arg, VARIANT *var_arg, int codepage T } if (pval_arg->is_ref) { /* deprecated, implemented for downwards compatiblity */ - type |= VT_BYREF; +// type |= VT_BYREF; } pval_to_variant_ex(pval_arg, var_arg, type, codepage TSRMLS_CC); |