Fix regression testing for implemented functions

This commit is contained in:
Antonio SJ Musumeci 2022-12-11 14:44:19 -05:00
parent e81b1a6b9d
commit 094ad862e7

View File

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