aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-06-09 15:26:39 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-06-09 15:26:39 -0700
commit8e596c10101b17c664c5a66eaef14751008f61d9 (patch)
tree211732842f32a0b8bac06937f2da4d7af9f5e11d /src/core
parent39a59efddb6a57a3f17e22aa3ce511300224c35e (diff)
parentc3b0ac1b85e9395482a458d5811c4ae321de6756 (diff)
Merge branch 'error' of github.com:ctiller/grpc into error
Diffstat (limited to 'src/core')
-rw-r--r--src/core/lib/channel/channel_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/channel_args.c b/src/core/lib/channel/channel_args.c
index 7c701d5ec2..79ceeb66b3 100644
--- a/src/core/lib/channel/channel_args.c
+++ b/src/core/lib/channel/channel_args.c
@@ -213,7 +213,7 @@ static int find_compression_algorithm_states_bitset(const grpc_channel_args *a,
grpc_channel_args *grpc_channel_args_compression_algorithm_set_state(
grpc_channel_args **a, grpc_compression_algorithm algorithm, int state) {
- int *states_arg;
+ int *states_arg = NULL;
grpc_channel_args *result = *a;
const int states_arg_found =
find_compression_algorithm_states_bitset(*a, &states_arg);