4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 09:53:30 +08:00

[components][pipe] Fix 'pipe' command close bug when open failed.

This commit is contained in:
neverxie 2018-08-11 18:45:18 +08:00
parent 2ec54bab7a
commit 3a83e5524f

View File

@ -541,7 +541,7 @@ int pipe(int fildes[2])
fildes[1] = open(dev_name, O_WRONLY, 0);
if (fildes[1] < 0)
{
close(fildes[1]);
close(fildes[0]);
return -1;
}