HID: sony: remove duplicate NULL check before calling usb_free_urb()

[ Upstream commit b328dd02e1 ]

usb_free_urb() does the NULL check itself, so there is no need to duplicate
it prior to calling.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: e1cd4004cd ("HID: sony: Fix a potential memory leak in sony_probe()")
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Jiri Kosina 2023-10-04 21:10:41 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель a02c02adc2
Коммит 949ccc91c3
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -3074,8 +3074,7 @@ static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id)
return ret;
err:
if (sc->ghl_urb)
usb_free_urb(sc->ghl_urb);
usb_free_urb(sc->ghl_urb);
hid_hw_stop(hdev);
return ret;