diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-05-12 16:06:53 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-05-12 16:06:53 -0700 |
commit | 20b7d4899823673967ea875c99f17b8df1148e22 (patch) | |
tree | d26585bdeb73826a5c9c04bf3231f33ef0bd5831 /src | |
parent | 1aa28f00f871b39538fc2ab5b38e802fba286096 (diff) | |
parent | e43e27de3c6da208903c06a36fc6c23debcd172c (diff) |
Merge pull request #6529 from thinkerou/master
add owned
Diffstat (limited to 'src')
-rw-r--r-- | src/php/ext/grpc/call.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/php/ext/grpc/call.c b/src/php/ext/grpc/call.c index a0f3d160c6..a2c1c08169 100644 --- a/src/php/ext/grpc/call.c +++ b/src/php/ext/grpc/call.c @@ -96,6 +96,7 @@ zval *grpc_php_wrap_call(grpc_call *wrapped, bool owned) { wrapped_grpc_call *call = (wrapped_grpc_call *)zend_object_store_get_object(call_object TSRMLS_CC); call->wrapped = wrapped; + call->owned = owned; return call_object; } |