Skip to content
Snippets Groups Projects
Commit 9ac997ac authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Added TODO for php.

parent 6721d4f0
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ static void MallocAndCopyByteBufferToCharArray(grpc_byte_buffer *buffer, ...@@ -44,7 +44,7 @@ static void MallocAndCopyByteBufferToCharArray(grpc_byte_buffer *buffer,
grpc_byte_buffer_reader reader; grpc_byte_buffer_reader reader;
if (!grpc_byte_buffer_reader_init(&reader, buffer)) { if (!grpc_byte_buffer_reader_init(&reader, buffer)) {
*array = NULL; *array = NULL;
*lenght = 0; *length = 0;
return; return;
} }
// The slice contains uncompressed data even if compressed data was received // The slice contains uncompressed data even if compressed data was received
......
...@@ -60,6 +60,7 @@ void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string, ...@@ -60,6 +60,7 @@ void byte_buffer_to_string(grpc_byte_buffer *buffer, char **out_string,
size_t *out_length) { size_t *out_length) {
grpc_byte_buffer_reader reader; grpc_byte_buffer_reader reader;
if (buffer == NULL || !grpc_byte_buffer_reader_init(&reader, buffer)) { if (buffer == NULL || !grpc_byte_buffer_reader_init(&reader, buffer)) {
/* TODO(dgq): distinguish between the error cases. */
*out_string = NULL; *out_string = NULL;
*out_length = 0; *out_length = 0;
return; return;
......
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