aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/surface
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-04-05 20:17:38 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-04-05 20:17:38 -0700
commit16c13451f0f686faadda0e13bf3d5ee7f076430b (patch)
tree78d1e4bd1bf60192c5db5736b085ee0ff4bfe1b9 /src/core/lib/surface
parent0b541630192d676169b785488fc08c0e863fff62 (diff)
Fix init ordering,memory leaks
Diffstat (limited to 'src/core/lib/surface')
-rw-r--r--src/core/lib/surface/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/surface/init.c b/src/core/lib/surface/init.c
index 06c5dd4a31..1190adaaa6 100644
--- a/src/core/lib/surface/init.c
+++ b/src/core/lib/surface/init.c
@@ -126,7 +126,7 @@ static void register_builtin_channel_init() {
GRPC_CHANNEL_INIT_BUILTIN_PRIORITY,
append_filter, (void *)&grpc_lame_filter);
grpc_channel_init_register_stage(
- GRPC_SERVER_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, prepend_filter,
+ GRPC_SERVER_CHANNEL, INT_MAX, prepend_filter,
(void *)&grpc_server_top_filter);
}