diff options
author | Yuchen Zeng <zyc@google.com> | 2016-06-20 15:56:43 -0700 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2016-06-20 15:56:43 -0700 |
commit | adb65a6a4905ee8a74e6f6cb222c0b95ed1b7b1b (patch) | |
tree | 7598bcd62bef7ce801c1b04320528f971e71a02c /src | |
parent | e5633f8cb1f2f10d0bc393f7656cfdbb39434846 (diff) |
Fixed gpr_log format issues
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c index aad655effd..2a5b503c0c 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -1705,7 +1705,7 @@ static void parsing_action(grpc_exec_ctx *exec_ctx, void *arg, errors[1] = grpc_chttp2_perform_read(exec_ctx, &t->parsing, t->read_buffer.slices[i]); }; - if (i != t->read_buffer.count) { + if (i != t->read_buffer.count || errors[1] != GRPC_ERROR_NONE) { gpr_slice_unref(t->optional_drop_message); errors[2] = try_http_parsing(exec_ctx, t); if (errors[2] != GRPC_ERROR_NONE) { |