mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
reiserfs: fix uninit-value in comp_keys
[ Upstream commit dd8f87f21d
]
The cpu_key was not initialized in reiserfs_delete_solid_item(), which triggered
this issue.
Reported-and-tested-by: <syzbot+b3b14fb9f8a14c5d0267@syzkaller.appspotmail.com>
Signed-off-by: Edward Adam Davis <eadavis@qq.com>
Link: https://lore.kernel.org/r/tencent_9EA7E746DE92DBC66049A62EDF6ED64CA706@qq.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
27cd5ce076
commit
73852fe765
@ -1409,7 +1409,7 @@ void reiserfs_delete_solid_item(struct reiserfs_transaction_handle *th,
|
||||
INITIALIZE_PATH(path);
|
||||
int item_len = 0;
|
||||
int tb_init = 0;
|
||||
struct cpu_key cpu_key;
|
||||
struct cpu_key cpu_key = {};
|
||||
int retval;
|
||||
int quota_cut_bytes = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user