Skip to content
Snippets Groups Projects
Commit 43ce7f7d authored by Craig Tiller's avatar Craig Tiller
Browse files

Refcounting fix

parent 091190ae
No related branches found
No related tags found
No related merge requests found
...@@ -120,6 +120,7 @@ static void finish(grpc_exec_ctx *exec_ctx, internal_request *req, ...@@ -120,6 +120,7 @@ static void finish(grpc_exec_ctx *exec_ctx, internal_request *req,
grpc_slice_buffer_destroy_internal(exec_ctx, &req->incoming); grpc_slice_buffer_destroy_internal(exec_ctx, &req->incoming);
grpc_slice_buffer_destroy_internal(exec_ctx, &req->outgoing); grpc_slice_buffer_destroy_internal(exec_ctx, &req->outgoing);
GRPC_ERROR_UNREF(req->overall_error); GRPC_ERROR_UNREF(req->overall_error);
GRPC_ERROR_UNREF(error);
grpc_resource_quota_unref_internal(exec_ctx, req->resource_quota); grpc_resource_quota_unref_internal(exec_ctx, req->resource_quota);
gpr_free(req); gpr_free(req);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment