aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-05-05 11:36:39 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-05-05 11:36:39 -0700
commitc45f44b6654a237018a06a90a931273f40819eef (patch)
tree06dcdc58b47b1f0fc95b154446195c393579b46f /src/core/ext
parent81be250ee7e3b96d26cc84e8688b36303444112f (diff)
compile error
Diffstat (limited to 'src/core/ext')
-rw-r--r--src/core/ext/transport/chttp2/transport/hpack_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/hpack_parser.c b/src/core/ext/transport/chttp2/transport/hpack_parser.c
index 993c6d0204..0e337a655e 100644
--- a/src/core/ext/transport/chttp2/transport/hpack_parser.c
+++ b/src/core/ext/transport/chttp2/transport/hpack_parser.c
@@ -1430,7 +1430,7 @@ static grpc_error *parse_value_string(grpc_chttp2_hpack_parser *p,
static grpc_error *parse_value_string_with_indexed_key(
grpc_chttp2_hpack_parser *p, const uint8_t *cur, const uint8_t *end) {
- bool is_binary;
+ bool is_binary = false;
grpc_error *err = is_binary_indexed_header(p, &is_binary);
if (err != GRPC_ERROR_NONE) return err;
return parse_value_string(p, cur, end, is_binary);