Fix uninitialized variable

pull/357/head
Craig Tiller 10 years ago
parent dddbf69d8f
commit 2f38be6526
  1. 2
      src/core/surface/call.c

@ -212,7 +212,7 @@ static void request_more_data(grpc_call *call) {
static void lock(grpc_call *call) { gpr_mu_lock(&call->mu); }
static void unlock(grpc_call *call) {
send_action sa;
send_action sa = SEND_NOTHING;
completed_request completed_requests[GRPC_IOREQ_OP_COUNT];
int num_completed_requests = call->num_completed_requests;
int i;

Loading…
Cancel
Save