diff options
author | 2024-06-17 13:43:09 +0300 | |
---|---|---|
committer | 2024-07-11 12:19:42 +0300 | |
commit | 2cbbd96820255fff4f0ad1533197370c9ccc570b (patch) | |
tree | e31898eb6511c9d61494545edcfd5d0c780d7c44 | |
parent | fs/ntfs3: Fix the format of the "nocase" mount option (diff) | |
download | wireguard-linux-2cbbd96820255fff4f0ad1533197370c9ccc570b.tar.xz wireguard-linux-2cbbd96820255fff4f0ad1533197370c9ccc570b.zip |
fs/ntfs3: Missed error return
Fixes: 3f3b442b5ad2 ("fs/ntfs3: Add bitmap")
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to '')
-rw-r--r-- | fs/ntfs3/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs3/bitmap.c b/fs/ntfs3/bitmap.c index c9eb01ccee51..cf4fe21a5039 100644 --- a/fs/ntfs3/bitmap.c +++ b/fs/ntfs3/bitmap.c @@ -1382,7 +1382,7 @@ int wnd_extend(struct wnd_bitmap *wnd, size_t new_bits) err = ntfs_vbo_to_lbo(sbi, &wnd->run, vbo, &lbo, &bytes); if (err) - break; + return err; bh = ntfs_bread(sb, lbo >> sb->s_blocksize_bits); if (!bh) |