aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/ext
diff options
context:
space:
mode:
authorGravatar Bo Yang <teboring@google.com>2017-12-04 12:32:10 -0800
committerGravatar Bo Yang <teboring@google.com>2017-12-04 12:32:10 -0800
commitb140cb3145f697a025d7b81b53a190d1e89b17dc (patch)
tree9af5d19c73692f7f926851490fc93484d7b41618 /php/ext
parent1acacf46ccd386de8ee660335b4b1a8dffb2967d (diff)
Fix memory leak when creating map field via array.
Diffstat (limited to 'php/ext')
-rw-r--r--php/ext/google/protobuf/type_check.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/php/ext/google/protobuf/type_check.c b/php/ext/google/protobuf/type_check.c
index 50e0f8c1..37171426 100644
--- a/php/ext/google/protobuf/type_check.c
+++ b/php/ext/google/protobuf/type_check.c
@@ -534,8 +534,7 @@ void check_map_field(const zend_class_entry* klass, PHP_PROTO_LONG key_type,
CACHED_PTR_TO_ZVAL_PTR((CACHED_VALUE*)value) TSRMLS_CC);
}
- Z_DELREF_P(CACHED_TO_ZVAL_PTR(map_field));
- RETURN_ZVAL(CACHED_TO_ZVAL_PTR(map_field), 1, 0);
+ RETURN_ZVAL(CACHED_TO_ZVAL_PTR(map_field), 1, 1);
} else if (Z_TYPE_P(val) == IS_OBJECT) {
if (!instanceof_function(Z_OBJCE_P(val), map_field_type TSRMLS_CC)) {
zend_error(E_USER_ERROR, "Given value is not an instance of %s.",