Merge pull request #2254 from misonyo/dev

[driver/ringbuffer]illegal access to freed memory
This commit is contained in:
Bernard Xiong
2019-01-23 11:11:03 +08:00
committed by GitHub
+1
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);