Skip to content

Commit

Permalink
Merge pull request #1109 from trapexit/fixes
Browse files Browse the repository at this point in the history
Fix regression testing for implemented functions
  • Loading branch information
trapexit authored Dec 11, 2022
2 parents e81b1a6 + 094ad86 commit 6c2db76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libfuse/lib/fuse_lowlevel.c
Original file line number Diff line number Diff line change
Expand Up @@ -1999,6 +1999,8 @@ fuse_ll_process_buf(void *data,
err = ENOSYS;
if(in->opcode >= FUSE_MAXOP)
goto reply_err;
if(fuse_ll_ops[in->opcode].func == NULL)
goto reply_err;

fuse_ll_ops[in->opcode].func(req, in);

Expand Down

0 comments on commit 6c2db76

Please sign in to comment.