iob: iob_clone_partial support Negative offset
make the function can correctly handle negative offset cases Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
This commit is contained in:
parent
c31e869fac
commit
69667e2c73
|
@ -140,7 +140,7 @@ int iob_clone_partial(FAR struct iob_s *iob1, unsigned int len,
|
||||||
while (iob2 != NULL)
|
while (iob2 != NULL)
|
||||||
{
|
{
|
||||||
avail2 = CONFIG_IOB_BUFSIZE - iob2->io_offset;
|
avail2 = CONFIG_IOB_BUFSIZE - iob2->io_offset;
|
||||||
if (offset2 < avail2)
|
if ((int)(offset2 - avail2) < 0)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue