* [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress()
@ 2026-04-28 19:21 Nathan Chancellor
2026-04-28 23:25 ` Hyunchul Lee
2026-04-29 22:07 ` Namjae Jeon
0 siblings, 2 replies; 3+ messages in thread
From: Nathan Chancellor @ 2026-04-28 19:21 UTC (permalink / raw)
To: Namjae Jeon, Hyunchul Lee
Cc: Zhan Xusheng, linux-fsdevel, llvm, patches, Nathan Chancellor
Clang warns (or errors with CONFIG_WERROR=y / W=e):
fs/ntfs/runlist.c:755:6: error: variable 'rl' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
755 | if (overflows_type(lowest_vcn, vcn)) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...
fs/ntfs/runlist.c:971:9: note: uninitialized use occurs here
971 | kvfree(rl);
| ^~
...
rl has not been allocated at this point so the 'goto err_out' should
really just be a return of the error pointer -EIO.
Fixes: cad7c6f0a514 ("ntfs: fix VCN overflow in ntfs_mapping_pairs_decompress()")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
---
fs/ntfs/runlist.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ntfs/runlist.c b/fs/ntfs/runlist.c
index be6ca3d374bb..da21dbeaaf66 100644
--- a/fs/ntfs/runlist.c
+++ b/fs/ntfs/runlist.c
@@ -754,7 +754,7 @@ struct runlist_element *ntfs_mapping_pairs_decompress(const struct ntfs_volume *
/* Validate lowest_vcn from on-disk metadata to ensure it is sane. */
if (overflows_type(lowest_vcn, vcn)) {
ntfs_error(vol->sb, "Invalid lowest_vcn in mapping pairs.");
- goto err_out;
+ return ERR_PTR(-EIO);
}
/* Start at vcn = lowest_vcn and lcn 0. */
vcn = lowest_vcn;
---
base-commit: d986ba0329dcca102e227995371135c9bbcefb6b
change-id: 20260428-ntfs-fix-sometimes-uninit-rl-cfe3c6a9c34e
Best regards,
--
Nathan Chancellor <nathan@kernel.org>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress()
2026-04-28 19:21 [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress() Nathan Chancellor
@ 2026-04-28 23:25 ` Hyunchul Lee
2026-04-29 22:07 ` Namjae Jeon
1 sibling, 0 replies; 3+ messages in thread
From: Hyunchul Lee @ 2026-04-28 23:25 UTC (permalink / raw)
To: Nathan Chancellor; +Cc: Namjae Jeon, Zhan Xusheng, linux-fsdevel, llvm, patches
On Tue, Apr 28, 2026 at 03:21:38PM -0400, Nathan Chancellor wrote:
> Clang warns (or errors with CONFIG_WERROR=y / W=e):
>
> fs/ntfs/runlist.c:755:6: error: variable 'rl' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
> 755 | if (overflows_type(lowest_vcn, vcn)) {
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> ...
> fs/ntfs/runlist.c:971:9: note: uninitialized use occurs here
> 971 | kvfree(rl);
> | ^~
> ...
>
> rl has not been allocated at this point so the 'goto err_out' should
> really just be a return of the error pointer -EIO.
>
> Fixes: cad7c6f0a514 ("ntfs: fix VCN overflow in ntfs_mapping_pairs_decompress()")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Thank you for this patch.
Reviewed-by: Hyunchul Lee <hyc.lee@gmail.com>
> ---
> fs/ntfs/runlist.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/ntfs/runlist.c b/fs/ntfs/runlist.c
> index be6ca3d374bb..da21dbeaaf66 100644
> --- a/fs/ntfs/runlist.c
> +++ b/fs/ntfs/runlist.c
> @@ -754,7 +754,7 @@ struct runlist_element *ntfs_mapping_pairs_decompress(const struct ntfs_volume *
> /* Validate lowest_vcn from on-disk metadata to ensure it is sane. */
> if (overflows_type(lowest_vcn, vcn)) {
> ntfs_error(vol->sb, "Invalid lowest_vcn in mapping pairs.");
> - goto err_out;
> + return ERR_PTR(-EIO);
> }
> /* Start at vcn = lowest_vcn and lcn 0. */
> vcn = lowest_vcn;
>
> ---
> base-commit: d986ba0329dcca102e227995371135c9bbcefb6b
> change-id: 20260428-ntfs-fix-sometimes-uninit-rl-cfe3c6a9c34e
>
> Best regards,
> --
> Nathan Chancellor <nathan@kernel.org>
>
--
Thanks,
Hyunchul
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress()
2026-04-28 19:21 [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress() Nathan Chancellor
2026-04-28 23:25 ` Hyunchul Lee
@ 2026-04-29 22:07 ` Namjae Jeon
1 sibling, 0 replies; 3+ messages in thread
From: Namjae Jeon @ 2026-04-29 22:07 UTC (permalink / raw)
To: Nathan Chancellor
Cc: Hyunchul Lee, Zhan Xusheng, linux-fsdevel, llvm, patches
On Wed, Apr 29, 2026 at 4:21 AM Nathan Chancellor <nathan@kernel.org> wrote:
>
> Clang warns (or errors with CONFIG_WERROR=y / W=e):
>
> fs/ntfs/runlist.c:755:6: error: variable 'rl' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
> 755 | if (overflows_type(lowest_vcn, vcn)) {
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> ...
> fs/ntfs/runlist.c:971:9: note: uninitialized use occurs here
> 971 | kvfree(rl);
> | ^~
> ...
>
> rl has not been allocated at this point so the 'goto err_out' should
> really just be a return of the error pointer -EIO.
>
> Fixes: cad7c6f0a514 ("ntfs: fix VCN overflow in ntfs_mapping_pairs_decompress()")
> Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Applied it to #ntfs-next.
Thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-29 22:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-28 19:21 [PATCH] ntfs: Use return instead of goto in ntfs_mapping_pairs_decompress() Nathan Chancellor
2026-04-28 23:25 ` Hyunchul Lee
2026-04-29 22:07 ` Namjae Jeon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox