fs/vfs/fs_open.c: Fix not returning failure for block_proxy() call.

This commit is contained in:
David Sidrane 2019-01-25 06:23:34 -06:00 committed by Gregory Nutt
parent 7bbc7f568a
commit ffd37a0175
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ int nx_vopen(FAR const char *path, int oflags, va_list ap)
fd = block_proxy(path, oflags);
if (fd < 0)
{
ret = fd;
goto errout_with_search;
}