Message ID | 1669107208-16226-1-git-send-email-guohanjun@huawei.com |
---|---|
State | Accepted |
Commit | f2ae44ae5335864794acb5b0490746ba9db3ccd7 |
Headers | show |
Series | ACPI: fan: Bail out if extract package failed | expand |
diff --git a/drivers/acpi/fan_core.c b/drivers/acpi/fan_core.c index 52a0b30..9dccbae 100644 --- a/drivers/acpi/fan_core.c +++ b/drivers/acpi/fan_core.c @@ -236,6 +236,7 @@ static int acpi_fan_get_fif(struct acpi_device *device) if (ACPI_FAILURE(status)) { dev_err(&device->dev, "Invalid _FIF element\n"); status = -EINVAL; + goto err; } fan->fif.revision = fields[0];
Bail out if we extract the _FIF package failed, or we will end of referencing the garbage information in fields[], the fan control will be in mess, fix it. Fiexes: d445571fa369 ("ACPI: fan: Optimize struct acpi_fan_fif") Signed-off-by: Hanjun Guo <guohanjun@huawei.com> --- drivers/acpi/fan_core.c | 1 + 1 file changed, 1 insertion(+)