mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
Fix some errors in debug assertions
This commit is contained in:
@@ -337,7 +337,7 @@ psock_dgram_recvfrom(FAR struct socket *psock, FAR void *buf, size_t len,
|
||||
|
||||
/* Adjust the number of bytes remaining to be read from the packet */
|
||||
|
||||
DEBUGASSERT(tmplen <= remain);
|
||||
DEBUGASSERT(tmplen <= remaining);
|
||||
remaining -= tmplen;
|
||||
}
|
||||
while (remaining > 0);
|
||||
|
||||
@@ -111,7 +111,7 @@ int local_fifo_read(int fd, FAR uint8_t *buf, size_t *len)
|
||||
}
|
||||
else
|
||||
{
|
||||
DEBUGASSERT(nread <= len);
|
||||
DEBUGASSERT(nread <= remaining);
|
||||
remaining -= nread;
|
||||
buf += nread;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user