0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-11 06:28:55 +02:00

ircd::server: Add head bytes when calculating read total.

This commit is contained in:
Jason Volk 2018-04-06 02:19:35 -07:00
parent 5648903998
commit 4c26b65613

View file

@ -2814,7 +2814,7 @@ size_t
ircd::server::tag::read_size()
const
{
return state.content_length;
return state.head_read + state.content_length;
}
size_t