Skip to content
Snippets Groups Projects
Commit c7cf9a69 authored by Yuchen Zeng's avatar Yuchen Zeng
Browse files

Fix maybe-uninitialized variable

parent c43aa51f
No related branches found
No related tags found
No related merge requests found
......@@ -781,7 +781,7 @@ static enum e_op_result execute_stream_op(grpc_exec_ctx *exec_ctx,
&cronet_callbacks);
CRONET_LOG(GPR_DEBUG, "%p = cronet_bidirectional_stream_create()", s->cbs);
char *url;
const char *method;
const char *method = NULL;
s->header_array.headers = NULL;
convert_metadata_to_cronet_headers(
stream_op->send_initial_metadata->list.head, s->curr_ct.host, &url,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment