diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-01 01:25:01 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-01 01:25:01 +0300 |
commit | 7e5cd6f69735d6294965b20e8d26a3bd68ee726e (patch) | |
tree | 003b1159b31bbe44c182d04c5b0285fa62816941 /fs/jfs/namei.c | |
parent | 3ef96fcfd50b9980470efb1acec7c27a60b98e87 (diff) | |
parent | 0225e10972fa809728b8d4c1bd2772b3ec3fdb57 (diff) | |
download | linux-7e5cd6f69735d6294965b20e8d26a3bd68ee726e.tar.xz |
Merge tag 'jfs-6.6' of github.com:kleikamp/linux-shaggy
Pull jfs updates from Dave Kleikamp:
"A few small fixes"
* tag 'jfs-6.6' of github.com:kleikamp/linux-shaggy:
jfs: validate max amount of blocks before allocation.
jfs: remove redundant initialization to pointer ip
jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount
FS: JFS: (trivial) Fix grammatical error in extAlloc
fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount()
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r-- | fs/jfs/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 029d47065600..57d7a4300210 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c @@ -883,7 +883,7 @@ static int jfs_symlink(struct mnt_idmap *idmap, struct inode *dip, struct component_name dname; u32 ssize; /* source pathname size */ struct btstack btstack; - struct inode *ip = d_inode(dentry); + struct inode *ip; s64 xlen = 0; int bmask = 0, xsize; s64 xaddr; |