|
@@ -14597,6 +14597,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
|
|
|
default:
|
|
|
hdd_err("Unsupported cipher type: %u", params->cipher);
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return -EOPNOTSUPP;
|
|
|
}
|
|
|
|
|
@@ -14617,6 +14618,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
/* if a key is already installed, block all subsequent ones */
|
|
|
if (adapter->session.station.ibss_enc_key_installed) {
|
|
|
hdd_debug("IBSS key installed already");
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -14627,6 +14629,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
|
|
|
if (0 != status) {
|
|
|
hdd_err("sme_roam_set_key failed, status: %d", status);
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
/* Save the keys here and call sme_roam_set_key for setting
|
|
@@ -14636,6 +14639,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
&setKey, sizeof(tCsrRoamSetKey));
|
|
|
|
|
|
adapter->session.station.ibss_enc_key_installed = 1;
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return qdf_status_to_os_return(status);
|
|
|
}
|
|
|
if ((adapter->device_mode == QDF_SAP_MODE) ||
|
|
@@ -14698,9 +14702,11 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
adapter->vdev_id, &setKey);
|
|
|
if (status == QDF_STATUS_FT_PREAUTH_KEY_SUCCESS) {
|
|
|
hdd_debug("Update PreAuth Key success");
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return 0;
|
|
|
} else if (status == QDF_STATUS_FT_PREAUTH_KEY_FAILED) {
|
|
|
hdd_err("Update PreAuth Key failed");
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
@@ -14711,6 +14717,7 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
|
|
|
if (0 != status) {
|
|
|
hdd_err("sme_roam_set_key failed, status: %d", status);
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
@@ -14747,10 +14754,12 @@ static int __wlan_hdd_cfg80211_add_key(struct wiphy *wiphy,
|
|
|
|
|
|
if (0 != status) {
|
|
|
hdd_err("sme_roam_set_key failed for group key (IBSS), returned %d", status);
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ qdf_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
|
|
|
hdd_exit();
|
|
|
return 0;
|
|
|
}
|