[components/drivers] update pipe.c
Fixed stackover flow bug when create pipe->fifo
This commit is contained in:
parent
5b300113f7
commit
ff09587d23
|
@ -330,6 +330,11 @@ rt_err_t rt_pipe_open (rt_device_t device, rt_uint16_t oflag)
|
|||
if (pipe->fifo == RT_NULL)
|
||||
{
|
||||
pipe->fifo = rt_ringbuffer_create(pipe->bufsz);
|
||||
if (pipe->fifo == RT_NULL)
|
||||
{
|
||||
rt_mutex_release(&(pipe->lock));
|
||||
return -RT_ENOMEM;
|
||||
}
|
||||
}
|
||||
|
||||
rt_mutex_release(&(pipe->lock));
|
||||
|
|
Loading…
Reference in New Issue