ADD to the buffer size

This commit is contained in:
James R 2020-06-14 19:13:22 -07:00
parent e7d949aeb2
commit bae37aea2c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ HMS_on_read (char *s, size_t _1, size_t n, void *userdata)
{
/* resize to next multiple of buffer size */
blocks = ( n / DEFAULT_BUFFER_SIZE + 1 );
buffer->end = ( blocks * DEFAULT_BUFFER_SIZE );
buffer->end += ( blocks * DEFAULT_BUFFER_SIZE );
buffer->buffer = realloc(buffer->buffer, buffer->end);
}