mirror of
https://github.com/versity/scoutfs.git
synced 2026-09-12 11:06:17 +00:00
In these two error conditions we explicitly set `ret = -EIO` but then `break` to set `ret = 0` immediately again, masking away a critical error code that should be returned. Instead, `goto out` retains the EIO error value for the caller. Signed-off-by: Auke Kok <auke.kok@versity.com>