Skip to content
Snippets Groups Projects
Commit a3570f22 authored by Lizan Zhou's avatar Lizan Zhou
Browse files

Fix grpc_byte_buffer_copy to copy compression algorithm

parent d57bbe7f
Branches
Tags
No related merge requests found
......@@ -72,8 +72,9 @@ grpc_byte_buffer *grpc_raw_byte_buffer_from_reader(
grpc_byte_buffer *grpc_byte_buffer_copy(grpc_byte_buffer *bb) {
switch (bb->type) {
case GRPC_BB_RAW:
return grpc_raw_byte_buffer_create(bb->data.raw.slice_buffer.slices,
bb->data.raw.slice_buffer.count);
return grpc_raw_compressed_byte_buffer_create(
bb->data.raw.slice_buffer.slices, bb->data.raw.slice_buffer.count,
bb->data.raw.compression);
}
GPR_UNREACHABLE_CODE(return NULL);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment