[DFS] Fix `fd_new` failed return value.
This commit is contained in:
parent
b4831fbde4
commit
b4168cc60d
|
@ -128,7 +128,7 @@ int fd_new(void)
|
||||||
/* can't find an empty fd entry */
|
/* can't find an empty fd entry */
|
||||||
if (idx == DFS_FD_MAX)
|
if (idx == DFS_FD_MAX)
|
||||||
{
|
{
|
||||||
idx = -1;
|
idx = -(1 + DFS_FD_OFFSET);
|
||||||
goto __result;
|
goto __result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue