1
0
Fork 0

hwmon: (asus_atk0110) Fix memory leak

The object returned by atk_gitm is dynamically allocated and must be
freed.

Signed-off-by: Luca Tettamanti <kronos.it@gmail.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: stable@kernel.org
hifive-unleashed-5.1
Luca Tettamanti 2011-07-17 18:39:18 +02:00 committed by Jean Delvare
parent 1765a367a3
commit 0b8e77f12c
1 changed files with 1 additions and 0 deletions

View File

@ -674,6 +674,7 @@ static int atk_debugfs_gitm_get(void *p, u64 *val)
else
err = -EIO;
ACPI_FREE(ret);
return err;
}