From 09e186b3480aa9d8e168ed2a2befc85678bc7651 Mon Sep 17 00:00:00 2001 From: CismonX Date: Thu, 20 Mar 2025 12:21:47 +0800 Subject: [PATCH] fs_ops: fix setattr --- src/fs_ops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fs_ops.c b/src/fs_ops.c index b960c7e..201483b 100644 --- a/src/fs_ops.c +++ b/src/fs_ops.c @@ -2330,6 +2330,7 @@ fs_op_setattr ( } if (status < 0) { send_reply(err, req, -status); + return; } send_reply(attr, req, stat_buf, FS_ENTRY_TIMEOUT);