commit: 0b8e77f12cb6bfe2e5a67f2cdc8c7af23abc4ccf From: Luca Tettamanti <[email protected]> Date: Sun, 17 Jul 2011 18:39:18 +0200 Subject: [PATCH] hwmon: (asus_atk0110) Fix memory leak
The object returned by atk_gitm is dynamically allocated and must be freed. Signed-off-by: Luca Tettamanti <[email protected]> Signed-off-by: Jean Delvare <[email protected]> Cc: [email protected] --- drivers/hwmon/asus_atk0110.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c index dcb78a7..00e9851 100644 --- a/drivers/hwmon/asus_atk0110.c +++ b/drivers/hwmon/asus_atk0110.c @@ -674,6 +674,7 @@ static int atk_debugfs_gitm_get(void *p, u64 *val) else err = -EIO; + ACPI_FREE(ret); return err; } _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
