提交 d2be15bd 编写于 作者: L Li Dongyang 提交者: Matthew Garrett

thinkpad_acpi: Fix a memory leak during module exit

We should free the thinkpad_id.nummodel_str during exit as it's allocated
in get_thinkpad_module_data().
Signed-off-by: NLi Dongyang <Jerry87905@gmail.com>
Signed-off-by: NMatthew Garrett <mjg@redhat.com>
上级 e03e389d
...@@ -8970,6 +8970,7 @@ static void thinkpad_acpi_module_exit(void) ...@@ -8970,6 +8970,7 @@ static void thinkpad_acpi_module_exit(void)
kfree(thinkpad_id.bios_version_str); kfree(thinkpad_id.bios_version_str);
kfree(thinkpad_id.ec_version_str); kfree(thinkpad_id.ec_version_str);
kfree(thinkpad_id.model_str); kfree(thinkpad_id.model_str);
kfree(thinkpad_id.nummodel_str);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册