aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/chttp2
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-12-18 11:40:49 -0800
committerGravatar Yang Gao <yangg@google.com>2015-12-18 11:40:49 -0800
commit11169d9a2c8301f9d8205ab8a2fb7582530156bc (patch)
tree876e671713caac129ffff1b5ab2967d2527ccca8 /src/core/transport/chttp2
parentf5be46d060fae3330408c1af7db236bd9d7f7e82 (diff)
parenta3f298ff67e8ee3ada117de136ea2469a146dc5e (diff)
Merge pull request #4384 from ctiller/big_data
Add a test that overflows incoming flow control windows
Diffstat (limited to 'src/core/transport/chttp2')
-rw-r--r--src/core/transport/chttp2/frame_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/chttp2/frame_data.c b/src/core/transport/chttp2/frame_data.c
index 60a3ce23d5..5b16ce6334 100644
--- a/src/core/transport/chttp2/frame_data.c
+++ b/src/core/transport/chttp2/frame_data.c
@@ -58,7 +58,7 @@ void grpc_chttp2_data_parser_destroy(grpc_exec_ctx *exec_ctx,
}
while (
(bs = grpc_chttp2_incoming_frame_queue_pop(&parser->incoming_frames))) {
- grpc_byte_stream_destroy(bs);
+ grpc_byte_stream_destroy(exec_ctx, bs);
}
}