aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/chttp2/frame_data.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-09 19:42:22 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-09 19:42:22 -0800
commit3b66ab9f9e16dae7d006e3abac947e11a45d9002 (patch)
tree0bfa9fbca1dd028897ddf3b0ee7eca0390168b16 /src/core/transport/chttp2/frame_data.c
parentf9263bcfcd21efce71e90a81be96e58dd03686fc (diff)
Window overflow test
Diffstat (limited to 'src/core/transport/chttp2/frame_data.c')
-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 38fa990758..08cc760aba 100644
--- a/src/core/transport/chttp2/frame_data.c
+++ b/src/core/transport/chttp2/frame_data.c
@@ -57,7 +57,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);
}
}