Procházet zdrojové kódy

Merge pull request #2254 from misonyo/dev

[driver/ringbuffer]illegal access to freed memory
Bernard Xiong před 6 roky
rodič
revize
358a3884f6
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  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);