Merge pull request #1134 from elupus/patch-2

fix: add missing return causing uninitialized reads
This commit is contained in:
Christopher Haster
2025-09-29 15:10:26 -05:00
committed by GitHub

1
lfs.c
View File

@@ -1282,6 +1282,7 @@ static lfs_stag_t lfs_dir_fetchmatch(lfs_t *lfs,
if (err == LFS_ERR_CORRUPT) {
break;
}
return err;
}
lfs_fcrc_fromle32(&fcrc);