]> www.infradead.org Git - users/hch/xfs.git/commitdiff
btrfs: initialize last_extent_end to fix -Wmaybe-uninitialized warning in extent_fiemap()
authorDavid Sterba <dsterba@suse.com>
Tue, 20 Aug 2024 23:19:57 +0000 (01:19 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 26 Aug 2024 14:58:13 +0000 (16:58 +0200)
There's a warning (probably on some older compiler version):

fs/btrfs/fiemap.c: warning: 'last_extent_end' may be used uninitialized in this function [-Wmaybe-uninitialized]:  => 822:19

Initialize the variable to 0 although it's not necessary as it's either
properly set or not used after an error. The called function is in the
same file so this is a false alert but we want to fix all
-Wmaybe-uninitialized reports.

Link: https://lore.kernel.org/all/20240819070639.2558629-1-geert@linux-m68k.org/
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/fiemap.c

index 8f95f3e44e99e23c9acea9c27f97f79e09631d05..df7f09f3b02e06a8465a7ff8776aeab0ef9ea787 100644 (file)
@@ -637,7 +637,7 @@ static int extent_fiemap(struct btrfs_inode *inode,
        struct btrfs_path *path;
        struct fiemap_cache cache = { 0 };
        struct btrfs_backref_share_check_ctx *backref_ctx;
-       u64 last_extent_end;
+       u64 last_extent_end = 0;
        u64 prev_extent_end;
        u64 range_start;
        u64 range_end;