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

Fix init ordering,memory leaks

parent 0b541630
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,8 @@ ...@@ -35,6 +35,8 @@
#include <stdbool.h> #include <stdbool.h>
#include <string.h> #include <string.h>
#include <grpc/support/alloc.h>
#include "src/core/ext/client_config/client_channel.h" #include "src/core/ext/client_config/client_channel.h"
#include "src/core/ext/client_config/lb_policy_registry.h" #include "src/core/ext/client_config/lb_policy_registry.h"
#include "src/core/ext/client_config/resolver_registry.h" #include "src/core/ext/client_config/resolver_registry.h"
...@@ -64,8 +66,10 @@ static bool set_default_host_if_unset(grpc_channel_stack_builder *builder, ...@@ -64,8 +66,10 @@ static bool set_default_host_if_unset(grpc_channel_stack_builder *builder,
arg.key = GRPC_ARG_DEFAULT_AUTHORITY; arg.key = GRPC_ARG_DEFAULT_AUTHORITY;
arg.value.string = grpc_get_default_authority( arg.value.string = grpc_get_default_authority(
grpc_channel_stack_builder_get_target(builder)); grpc_channel_stack_builder_get_target(builder));
grpc_channel_stack_builder_set_channel_arguments( grpc_channel_args *new_args = grpc_channel_args_copy_and_add(args, &arg, 1);
builder, grpc_channel_args_copy_and_add(args, &arg, 1)); grpc_channel_stack_builder_set_channel_arguments(builder, new_args);
gpr_free(arg.value.string);
grpc_channel_args_destroy(new_args);
return true; return true;
} }
......
...@@ -142,7 +142,7 @@ void grpc_channel_stack_builder_set_channel_arguments( ...@@ -142,7 +142,7 @@ void grpc_channel_stack_builder_set_channel_arguments(
if (builder->args != NULL) { if (builder->args != NULL) {
grpc_channel_args_destroy(builder->args); grpc_channel_args_destroy(builder->args);
} }
builder->args = grpc_channel_args_copy(builder->args); builder->args = grpc_channel_args_copy(args);
} }
void grpc_channel_stack_builder_set_transport( void grpc_channel_stack_builder_set_transport(
......
...@@ -126,7 +126,7 @@ static void register_builtin_channel_init() { ...@@ -126,7 +126,7 @@ static void register_builtin_channel_init() {
GRPC_CHANNEL_INIT_BUILTIN_PRIORITY, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY,
append_filter, (void *)&grpc_lame_filter); append_filter, (void *)&grpc_lame_filter);
grpc_channel_init_register_stage( 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); (void *)&grpc_server_top_filter);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment