Skip to content

Commit

Permalink
Fix HttpMessage::get_output_body_blocks bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Barenboim committed Aug 31, 2023
1 parent 989cf72 commit 2a64697
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/protocol/HttpMessage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ size_t HttpMessage::get_output_body_blocks(const void *buf[], size_t size[],
block = list_entry(pos, struct HttpMessageBlock, list);
buf[n] = block->ptr;
size[n] = block->size;
n++;
}

return n;
Expand Down

0 comments on commit 2a64697

Please sign in to comment.