[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191105141807.27054-1-tranmanphong@gmail.com>
Date: Tue, 5 Nov 2019 21:18:07 +0700
From: Phong Tran <tranmanphong@...il.com>
To: benjamin.tissoires@...hat.com
Cc: linux-input@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org,
Phong Tran <tranmanphong@...il.com>,
syzbot+1234691fec1b8ceba8b1@...kaller.appspotmail.com
Subject: [PATCH] HID: hid-lg4ff: Fix uninit-value set_autocenter_default
syzbot found a problem using of uinit pointer in
lg4ff_set_autocenter_default().
Reported-by: syzbot+1234691fec1b8ceba8b1@...kaller.appspotmail.com
Tested by syzbot:
https://groups.google.com/d/msg/syzkaller-bugs/ApnMLW6sfKE/Qq0bIHGEAQAJ
Signed-off-by: Phong Tran <tranmanphong@...il.com>
---
drivers/hid/hid-lg4ff.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c
index 5e6a0cef2a06..44dfd08b0c32 100644
--- a/drivers/hid/hid-lg4ff.c
+++ b/drivers/hid/hid-lg4ff.c
@@ -468,10 +468,10 @@ static int lg4ff_play(struct input_dev *dev, void *data, struct ff_effect *effec
static void lg4ff_set_autocenter_default(struct input_dev *dev, u16 magnitude)
{
struct hid_device *hid = input_get_drvdata(dev);
- s32 *value;
+ s32 *value = NULL;
u32 expand_a, expand_b;
- struct lg4ff_device_entry *entry;
- struct lg_drv_data *drv_data;
+ struct lg4ff_device_entry *entry = NULL;
+ struct lg_drv_data *drv_data = NULL;
unsigned long flags;
drv_data = hid_get_drvdata(hid);
--
2.20.1
Powered by blists - more mailing lists