aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-08-19 11:42:51 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-08-19 11:42:51 -0700
commit18599e2518f687c07842aed9b999d838156a3116 (patch)
tree62769bebe876a5948229cd172000f7fe6bf83eda /src/node/ext
parent8a2ab3b249558f5bf4c6e4ef938c68b106750828 (diff)
parent00a3dab83a7f8e08ba9e9b8349da2d76ea1e4731 (diff)
Merge branch 'core_shutdown_idempotency' into node_server_graceful_shutdown
Diffstat (limited to 'src/node/ext')
-rw-r--r--src/node/ext/call.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc
index 705c80ffc1..a79a47427f 100644
--- a/src/node/ext/call.cc
+++ b/src/node/ext/call.cc
@@ -581,6 +581,7 @@ NAN_METHOD(Call::StartBatch) {
uint32_t type = keys->Get(i)->Uint32Value();
ops[i].op = static_cast<grpc_op_type>(type);
ops[i].flags = 0;
+ ops[i].reserved = NULL;
switch (type) {
case GRPC_OP_SEND_INITIAL_METADATA:
op.reset(new SendMetadataOp());