Browse Source
Merge pull request #1109 from trapexit/fixes
Fix regression testing for implemented functions
pull/684/merge
2.34.1
trapexit
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
libfuse/lib/fuse_lowlevel.c
|
@ -1999,6 +1999,8 @@ fuse_ll_process_buf(void *data, |
|
|
err = ENOSYS; |
|
|
err = ENOSYS; |
|
|
if(in->opcode >= FUSE_MAXOP) |
|
|
if(in->opcode >= FUSE_MAXOP) |
|
|
goto reply_err; |
|
|
goto reply_err; |
|
|
|
|
|
if(fuse_ll_ops[in->opcode].func == NULL) |
|
|
|
|
|
goto reply_err; |
|
|
|
|
|
|
|
|
fuse_ll_ops[in->opcode].func(req, in); |
|
|
fuse_ll_ops[in->opcode].func(req, in); |
|
|
|
|
|
|
|
|