From 3f294686b59f5d57b682bf43fc2d76e0bf309ae5 Mon Sep 17 00:00:00 2001 From: David Garcia Quintas Date: Mon, 15 Jun 2015 13:31:15 -0700 Subject: [PATCH] Added changes to node and php wrappers --- ext/call.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/call.cc b/ext/call.cc index 8cc3e38c..15c9b2d9 100644 --- a/ext/call.cc +++ b/ext/call.cc @@ -550,6 +550,7 @@ NAN_METHOD(Call::StartBatch) { } uint32_t type = keys->Get(i)->Uint32Value(); ops[i].op = static_cast(type); + ops[i].flags = 0; switch (type) { case GRPC_OP_SEND_INITIAL_METADATA: op.reset(new SendMetadataOp());