summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-12-08 17:16:48 +0100
committerAnatol Belski <ab@php.net>2016-12-08 17:16:48 +0100
commitd46972b6aef607b239fc3db28633941705884ca7 (patch)
tree53b4e465f4531afd58994f361e145d4c2d84c7bc
parent8250b3fca18efd310769c40c3e578fd40df6428b (diff)
parent66ad7918b8e95e8e7d23ab67890f58d55aba5de2 (diff)
downloadphp-git-d46972b6aef607b239fc3db28633941705884ca7.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: fix uninitialized member
-rw-r--r--ext/com_dotnet/com_handlers.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/com_dotnet/com_handlers.c b/ext/com_dotnet/com_handlers.c
index 5752a7d705..12c82a41bc 100644
--- a/ext/com_dotnet/com_handlers.c
+++ b/ext/com_dotnet/com_handlers.c
@@ -656,5 +656,7 @@ zend_object* php_com_object_new(zend_class_entry *ce)
zend_object_std_init(&obj->zo, ce);
obj->zo.handlers = &php_com_object_handlers;
+ obj->typeinfo = NULL;
+
return (zend_object*)obj;
}