Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fafbfb10 authored by Zhouyang Jia's avatar Zhouyang Jia Committed by Greg Kroah-Hartman
Browse files

HID: hid-ntrig: add error handling for sysfs_create_group



[ Upstream commit 44d4d51de9a3534a2b63d69efda02a10e66541e4 ]

When sysfs_create_group fails, the lack of error-handling code may
cause unexpected results.

This patch adds error-handling code after calling sysfs_create_group.

Signed-off-by: default avatarZhouyang Jia <jiazhouyang09@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
Signed-off-by: default avatarSasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d02f9650
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -953,6 +953,8 @@ static int ntrig_probe(struct hid_device *hdev, const struct hid_device_id *id)


	ret = sysfs_create_group(&hdev->dev.kobj,
	ret = sysfs_create_group(&hdev->dev.kobj,
			&ntrig_attribute_group);
			&ntrig_attribute_group);
	if (ret)
		hid_err(hdev, "cannot create sysfs group\n");


	return 0;
	return 0;
err_free:
err_free: