aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/byte_stream.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/byte_stream.c
parentf9263bcfcd21efce71e90a81be96e58dd03686fc (diff)
Window overflow test
Diffstat (limited to 'src/core/transport/byte_stream.c')
-rw-r--r--src/core/transport/byte_stream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/transport/byte_stream.c b/src/core/transport/byte_stream.c
index 81e8e77ccb..4e8f589623 100644
--- a/src/core/transport/byte_stream.c
+++ b/src/core/transport/byte_stream.c
@@ -44,8 +44,8 @@ int grpc_byte_stream_next(grpc_exec_ctx *exec_ctx,
on_complete);
}
-void grpc_byte_stream_destroy(grpc_byte_stream *byte_stream) {
- byte_stream->destroy(byte_stream);
+void grpc_byte_stream_destroy(grpc_exec_ctx *exec_ctx, grpc_byte_stream *byte_stream) {
+ byte_stream->destroy(exec_ctx, byte_stream);
}
/* slice_buffer_stream */
@@ -61,7 +61,7 @@ static int slice_buffer_stream_next(grpc_exec_ctx *exec_ctx,
return 1;
}
-static void slice_buffer_stream_destroy(grpc_byte_stream *byte_stream) {}
+static void slice_buffer_stream_destroy(grpc_exec_ctx *exec_ctx, grpc_byte_stream *byte_stream) {}
void grpc_slice_buffer_stream_init(grpc_slice_buffer_stream *stream,
gpr_slice_buffer *slice_buffer,