mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02: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
984ed0567f
commit
ca9b877a2e
|
@ -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