Browse Source

[driver/ringbuffer]illegal access to freed memory

misonyo 6 years ago
parent
commit
e02d6e616b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      components/drivers/src/ringbuffer.c

+ 1 - 0
components/drivers/src/ringbuffer.c

@@ -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);