Browse Source

Fix regression testing for implemented functions

pull/1109/head
Antonio SJ Musumeci 2 years ago
parent
commit
094ad862e7
  1. 2
      libfuse/lib/fuse_lowlevel.c

2
libfuse/lib/fuse_lowlevel.c

@ -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);

Loading…
Cancel
Save