Explorar el Código

qcacld-3.0: Initialize wlan_channel struct before use

In lim_update_mlo_mgr_ap_link_info_mbssid_connect(),
'channel' variable of type 'struct wlan_channel' is
used without initialization.

Fix is to initialize 'channel' structure = {0} on
declaration.

Change-Id: I3a6240396cf40ffa0c98f8a825cebd3dfe9f43c3
CRs-Fixed: 3663304
Abhinav Kumar hace 1 año
padre
commit
7e32bffd73
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      core/mac/src/pe/lim/lim_process_mlm_rsp_messages.c

+ 1 - 1
core/mac/src/pe/lim/lim_process_mlm_rsp_messages.c

@@ -3005,7 +3005,7 @@ lim_update_mlo_mgr_ap_link_info_mbssid_connect(struct pe_session *session)
 {
 	struct mlo_partner_info *partner_info;
 	struct mlo_link_info *partner_link_info;
-	struct wlan_channel channel;
+	struct wlan_channel channel = {0};
 	struct mlo_link_switch_context *link_ctx;
 	uint8_t i = 0;