[driver/ringbuffer]illegal access to freed memory

This commit is contained in:
misonyo 2019-01-21 21:59:39 +08:00
parent bef1d55736
commit e02d6e616b
1 changed files with 1 additions and 0 deletions

View File

@ -340,6 +340,7 @@ struct rt_ringbuffer* rt_ringbuffer_create(rt_uint16_t size)
if (pool == RT_NULL)
{
rt_free(rb);
rb = RT_NULL;
goto exit;
}
rt_ringbuffer_init(rb, pool, size);