aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-06-15 13:31:15 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-06-15 13:31:15 -0700
commitba710e5579575833566f362bf89b4955b3469b46 (patch)
tree80bc3b9b6f7e6460ea0c6d10f354bcdc6731a1f9 /src/node/ext
parentd7e0bea41c136a237e5dd93183d8f53161e193af (diff)
Added changes to node and php wrappers
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 8cc3e38cd9..15c9b2d97d 100644
--- a/src/node/ext/call.cc
+++ b/src/node/ext/call.cc
@@ -550,6 +550,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;
switch (type) {
case GRPC_OP_SEND_INITIAL_METADATA:
op.reset(new SendMetadataOp());