[PATCH 2/2] platform/x86: alienware-wmi: Correct a memory leak

From: Mario Limonciello
Date: Mon Sep 10 2018 - 14:02:15 EST


An ACPI buffer that was allocated was not being freed after use.

Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxxx>
Cc: stable@xxxxxxxxxxxxxxx
---
drivers/platform/x86/alienware-wmi.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/platform/x86/alienware-wmi.c b/drivers/platform/x86/alienware-wmi.c
index d975462..f10af5c 100644
--- a/drivers/platform/x86/alienware-wmi.c
+++ b/drivers/platform/x86/alienware-wmi.c
@@ -536,6 +536,7 @@ static acpi_status alienware_wmax_command(struct wmax_basic_args *in_args,
if (obj && obj->type == ACPI_TYPE_INTEGER)
*out_data = (u32) obj->integer.value;
}
+ kfree(output.pointer);
return status;

}
--
2.7.4