Skip to content
Snippets Groups Projects
Commit ad547cbb authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Correct and simplify buf_shrink logic

svn:r4167
parent d6a6c878
No related branches found
No related tags found
No related merge requests found
......@@ -249,13 +249,13 @@ buf_shrink(buf_t *buf)
{
size_t new_len;
if (buf->highwater >= (buf->len<<2) && buf->len > MIN_LAZY_SHRINK_SIZE*2)
return;
new_len = (buf->len>>1);
new_len = buf->len;
while (buf->highwater < (new_len>>2) && new_len > MIN_LAZY_SHRINK_SIZE*2)
new_len >>= 1;
if (new_len == buf->len)
return;
log_fn(LOG_DEBUG,"Shrinking buffer from %d to %d bytes.",
(int)buf->len, (int)new_len);
buf_resize(buf, new_len);
......
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