Skip to content
Snippets Groups Projects
Commit f09ab0c5 authored by thinkerou's avatar thinkerou
Browse files

Make PHP work correctly when receiving a compressed message

parent fa9b7c1b
No related branches found
No related tags found
No related merge requests found
...@@ -63,17 +63,15 @@ void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string, ...@@ -63,17 +63,15 @@ void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string,
*out_length = 0; *out_length = 0;
return; return;
} }
size_t length = grpc_byte_buffer_length(buffer);
char *string = ecalloc(length + 1, sizeof(char));
size_t offset = 0;
grpc_byte_buffer_reader reader; grpc_byte_buffer_reader reader;
grpc_byte_buffer_reader_init(&reader, buffer); grpc_byte_buffer_reader_init(&reader, buffer);
gpr_slice next; gpr_slice slice = grpc_byte_buffer_reader_readall(&reader);
while (grpc_byte_buffer_reader_next(&reader, &next) != 0) { size_t length = GPR_SLICE_LENGTH(slice);
memcpy(string + offset, GPR_SLICE_START_PTR(next), GPR_SLICE_LENGTH(next)); char *string = ecalloc(length + 1, sizeof(char));
offset += GPR_SLICE_LENGTH(next); memcpy(string, GPR_SLICE_START_PTR(slice), length);
gpr_slice_unref(next); gpr_slice_unref(slice);
}
*out_string = string; *out_string = string;
*out_length = length; *out_length = length;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment