]> git.meshlink.io Git - utcp/commitdiff
Fix buffer resizing logic in buffer_put_at().
authorGuus Sliepen <guus@meshlink.io>
Thu, 17 Dec 2015 17:07:19 +0000 (18:07 +0100)
committerGuus Sliepen <guus@sliepen.org>
Sun, 2 Jul 2017 10:16:15 +0000 (12:16 +0200)
When growing the buffer when it's not big enough for new data, the
current size is doubled repeatedly until it is big enough for the new
data. The required new size is stored in the variable "required",
however the doubling loop exited when the new size was at least
buf->used + len, which might be much smaller than "required" if an
out-of-order packet is received.


No differences found