rofiles-fuse: Add missing error handling for fcntl()
Spotted by Coverity. Coverity CID: 1452201 Closes: #1037 Approved by: jlebon
This commit is contained in:
parent
5daae8629e
commit
e70db67c01
|
|
@ -96,6 +96,8 @@ callback_readdir (const char *path, void *buf, fuse_fill_dir_t filler,
|
||||||
if (!*path)
|
if (!*path)
|
||||||
{
|
{
|
||||||
dfd = fcntl (basefd, F_DUPFD_CLOEXEC, 3);
|
dfd = fcntl (basefd, F_DUPFD_CLOEXEC, 3);
|
||||||
|
if (dfd < 0)
|
||||||
|
return -errno;
|
||||||
lseek (dfd, 0, SEEK_SET);
|
lseek (dfd, 0, SEEK_SET);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue