diff options
author | Craig Tiller <ctiller@google.com> | 2016-11-17 09:34:14 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-11-17 09:34:14 -0800 |
commit | 0451c3dbfcf7dcab791a4a2b10f284ac4723da8e (patch) | |
tree | a5da5a43d137808439058745b996bf121c461cc1 /src/core/ext/transport | |
parent | d7f15831c6a4dcd71fe10babde7bb0b380fb1eff (diff) |
Move slice functions to vtable, implement hash
Diffstat (limited to 'src/core/ext/transport')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/hpack_encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/hpack_encoder.c b/src/core/ext/transport/chttp2/transport/hpack_encoder.c index 9b27071c87..651f813c7e 100644 --- a/src/core/ext/transport/chttp2/transport/hpack_encoder.c +++ b/src/core/ext/transport/chttp2/transport/hpack_encoder.c @@ -64,7 +64,7 @@ /* don't consider adding anything bigger than this to the hpack table */ #define MAX_DECODER_SPACE_USAGE 512 -static grpc_slice_refcount terminal_slice_refcount = {NULL, NULL}; +static grpc_slice_refcount terminal_slice_refcount = {NULL}; static const grpc_slice terminal_slice = {&terminal_slice_refcount, .data.refcounted = {0, 0}}; |