diff options
author | Luca Coelho <luciano.coelho@intel.com> | 2017-09-02 11:05:22 +0300 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2017-09-08 11:49:15 +0300 |
commit | 3f497de997c7ed34ad8a90b64f1ca53a41d428b4 (patch) | |
tree | 8d18fd664a2bfa59668dc67526614964507d5a90 /drivers/net | |
parent | 61e7d91bcf7725b9fcd9cbfc5fa0e0f84f19e6de (diff) | |
download | linux-3f497de997c7ed34ad8a90b64f1ca53a41d428b4.tar.xz |
iwlwifi: mvm: initialize status in iwl_mvm_add_int_sta_common()
We always need to initialize the status argument to the success case
before calling iwl_mvm_send_cmd_status() or
iwl_mvm_send_cmd_pdu_status() (which calls the former) otherwise we
may get an uninitialized value back. In this case, we use
ADD_STA_SUCCESS as success.
Fixes: 732d06e9d9cf ("iwlwifi: mvm: add station before allocating a queue")
Reported by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/sta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/sta.c b/drivers/net/wireless/intel/iwlwifi/mvm/sta.c index 2dafe9bb4d8b..c4a343534c5e 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/sta.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/sta.c @@ -1285,7 +1285,7 @@ static int iwl_mvm_add_int_sta_common(struct iwl_mvm *mvm, { struct iwl_mvm_add_sta_cmd cmd; int ret; - u32 status; + u32 status = ADD_STA_SUCCESS; lockdep_assert_held(&mvm->mutex); |