Skip to content
Snippets Groups Projects
Commit 3f182df7 authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Fix C asan error and check_sources_and_headers.py

parent c1a32fa4
Branches
Tags
No related merge requests found
...@@ -52,7 +52,6 @@ ...@@ -52,7 +52,6 @@
#include <grpc++/impl/codegen/grpc_library.h> #include <grpc++/impl/codegen/grpc_library.h>
#include <grpc++/impl/codegen/status.h> #include <grpc++/impl/codegen/status.h>
#include <grpc++/impl/codegen/time.h> #include <grpc++/impl/codegen/time.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/atm.h> #include <grpc/impl/codegen/atm.h>
struct grpc_completion_queue; struct grpc_completion_queue;
......
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
#include <grpc++/impl/codegen/config.h> #include <grpc++/impl/codegen/config.h>
#include <grpc++/impl/codegen/status.h> #include <grpc++/impl/codegen/status.h>
#include <grpc/grpc.h>
#include <grpc/impl/codegen/byte_buffer_reader.h> #include <grpc/impl/codegen/byte_buffer_reader.h>
#include <grpc/impl/codegen/grpc_types.h> #include <grpc/impl/codegen/grpc_types.h>
#include <grpc/impl/codegen/sync.h> #include <grpc/impl/codegen/sync.h>
......
...@@ -88,6 +88,7 @@ static void end_test(grpc_end2end_test_fixture *f) { ...@@ -88,6 +88,7 @@ static void end_test(grpc_end2end_test_fixture *f) {
grpc_completion_queue_shutdown(f->cq); grpc_completion_queue_shutdown(f->cq);
drain_cq(f->cq); drain_cq(f->cq);
grpc_completion_queue_destroy(f->cq); grpc_completion_queue_destroy(f->cq);
grpc_completion_queue_destroy(f->shutdown_cq);
} }
static void test_max_age_forcibly_close(grpc_end2end_test_config config) { static void test_max_age_forcibly_close(grpc_end2end_test_config config) {
......
...@@ -105,6 +105,7 @@ static void test_max_connection_idle(grpc_end2end_test_config config) { ...@@ -105,6 +105,7 @@ static void test_max_connection_idle(grpc_end2end_test_config config) {
grpc_channel_destroy(f.client); grpc_channel_destroy(f.client);
grpc_completion_queue_shutdown(f.cq); grpc_completion_queue_shutdown(f.cq);
grpc_completion_queue_destroy(f.cq); grpc_completion_queue_destroy(f.cq);
grpc_completion_queue_destroy(f.shutdown_cq);
config.tear_down_data(&f); config.tear_down_data(&f);
cq_verifier_destroy(cqv); cq_verifier_destroy(cqv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment