[PATCH] fix typo in acpi video brightness changes.

Prevent possible null dereference due to misplaced ;

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Dave Jones 2006-06-24 00:33:08 -04:00 committed by Linus Torvalds
parent 6edad161cd
commit d384ea691f

View file

@ -1645,7 +1645,7 @@ static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
printk(KERN_WARNING PREFIX
"hhuuhhuu bug in acpi video driver.\n");
if (data->brightness);
if (data->brightness)
kfree(data->brightness->levels);
kfree(data->brightness);
kfree(data);