From f371fce8871fbf67ed8af0fd3d51919d3bdacf5b Mon Sep 17 00:00:00 2001 From: Muxi Yan Date: Wed, 10 Apr 2019 16:20:31 -0700 Subject: [PATCH] Remove previous fix proposal proved to be wrong --- src/core/ext/transport/cronet/transport/cronet_transport.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.cc b/src/core/ext/transport/cronet/transport/cronet_transport.cc index 7ae178612c5..76a32dc4049 100644 --- a/src/core/ext/transport/cronet/transport/cronet_transport.cc +++ b/src/core/ext/transport/cronet/transport/cronet_transport.cc @@ -335,9 +335,6 @@ static void add_to_storage(struct stream_obj* s, /* add new op at the beginning of the linked list. The memory is freed in remove_from_storage */ op_and_state* new_op = grpc_core::New(s, *op); - // Pontential fix to crash on GPR_ASSERT(!curr->done) - // TODO (mxyan): check if this is indeed necessary. - new_op->done = false; gpr_mu_lock(&s->mu); new_op->next = storage->head; storage->head = new_op;