mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-22 03:09:16 +08:00
[drivers]Fix put_force bug
This commit is contained in:
@@ -119,8 +119,11 @@ rt_size_t rt_ringbuffer_put_force(struct rt_ringbuffer *rb,
|
||||
|
||||
space_length = rt_ringbuffer_space_len(rb);
|
||||
|
||||
if (length > space_length)
|
||||
if (length > rb->buffer_size)
|
||||
{
|
||||
ptr = &ptr[length - rb->buffer_size];
|
||||
length = rb->buffer_size;
|
||||
}
|
||||
|
||||
if (rb->buffer_size - rb->write_index > length)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user