mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
reiserfs: fix uninit-value in comp_keys
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>
This commit is contained in:
parent
2137e15642
commit
dd8f87f21d
@ -1407,7 +1407,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