summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_variant.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-04-11 10:06:17 +0200
committerBob Weinand <bobwei9@hotmail.com>2014-04-11 10:08:44 +0200
commitf614fc68984b2d7fce3f275b8106955b5d910472 (patch)
tree10c98c57643c60af4d1ae6a56b7112fb274a65ed /ext/com_dotnet/com_variant.c
parentd3f390a26888eefd012b4634137318797965ea86 (diff)
downloadphp-git-f614fc68984b2d7fce3f275b8106955b5d910472.tar.gz
Fix bug #66015 by reverting "Removed operations on constant arrays."
Diffstat (limited to 'ext/com_dotnet/com_variant.c')
-rw-r--r--ext/com_dotnet/com_variant.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/com_variant.c b/ext/com_dotnet/com_variant.c
index 4e044b20b8..3ddf016efb 100644
--- a/ext/com_dotnet/com_variant.c
+++ b/ext/com_dotnet/com_variant.c
@@ -160,7 +160,7 @@ PHP_COM_DOTNET_API void php_com_variant_from_zval(VARIANT *v, zval *z, int codep
case IS_RESOURCE:
case IS_CONSTANT:
- case IS_CONSTANT_ARRAY:
+ case IS_CONSTANT_AST:
default:
V_VT(v) = VT_NULL;
break;