wifi: iwlwifi: fw: avoid using an uninitialized variable
authorMiri Korenblit <miriam.rachel.korenblit@intel.com>
Sun, 9 Feb 2025 12:34:46 +0000 (14:34 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 11 Feb 2025 11:41:45 +0000 (12:41 +0100)
iwl_fwrt_read_err_table can return true also when it failed to read
the memory. In this case, err_id argument is not initialized,
but the callers are still using it.

Simply initialize it to 0. If the error table was read successfully it'll
be overridden.

Fixes: 43e0b2ada519 ("wifi: iwlwifi: fw: add an error table status getter")
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Link: https://patch.msgid.link/20250209143303.37cdbba4eb56.I95fe9bd95303b8179f946766558a9f15f4fe254c@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/dump.c

index 8e0c85a1240d75bac42b9c8c00b02837ee6db7ae..c7b261c8ec969f6c64a8fe02f86b5b6b4208b622 100644 (file)
@@ -540,6 +540,9 @@ bool iwl_fwrt_read_err_table(struct iwl_trans *trans, u32 base, u32 *err_id)
        } err_info = {};
        int ret;
 
+       if (err_id)
+               *err_id = 0;
+
        if (!base)
                return false;