dect
/
linux-2.6
Archived
13
0
Fork 0

HID: zydacron: kfree() NULL pointer cleanup

Checking for NULL pointers before kfree() is redundant.

Signed-off-by: Bojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Bojan Prtvar 2011-08-04 22:43:46 +02:00 committed by Jiri Kosina
parent f5fc87905e
commit 6371fe54b5
1 changed files with 1 additions and 3 deletions

View File

@ -201,9 +201,7 @@ static void zc_remove(struct hid_device *hdev)
struct zc_device *zc = hid_get_drvdata(hdev);
hid_hw_stop(hdev);
if (NULL != zc)
kfree(zc);
kfree(zc);
}
static const struct hid_device_id zc_devices[] = {