]> git.itanic.dy.fi Git - linux-stable/commitdiff
wifi: iwlwifi: uninitialized variable in iwl_acpi_get_ppag_table()
authorDan Carpenter <dan.carpenter@linaro.org>
Thu, 8 Feb 2024 10:17:31 +0000 (13:17 +0300)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 8 Feb 2024 12:49:37 +0000 (13:49 +0100)
This is an error path and Smatch complains that "tbl_rev" is uninitialized
on this path.  All the other functions follow this same patter where they
set the error code and goto out_free so that's probably what was intended
here as well.

Fixes: e8e10a37c51c ("iwlwifi: acpi: move ppag code from mvm to fw/acpi")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://msgid.link/09900c01-6540-4a32-9451-563da0029cb6@moroto.mountain
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/acpi.c

index d73d561709d3051480edd905f1418e9194eef9ab..dcc4810cb32472dbe8ee374091a2d58241af80c8 100644 (file)
@@ -1116,6 +1116,9 @@ int iwl_acpi_get_ppag_table(struct iwl_fw_runtime *fwrt)
                goto read_table;
        }
 
+       ret = PTR_ERR(wifi_pkg);
+       goto out_free;
+
 read_table:
        fwrt->ppag_ver = tbl_rev;
        flags = &wifi_pkg->package.elements[1];