Browse Source

qcacld-3.0: sanity check the cds_cfg before accessing

cds_get_ini_config() might return NULL for cds_cfg, add sanity check
before accessing it.

Change-Id: I0b9c13a75fb33931d0a098a69572b6cae2ac8621
CRs-fixed: 2232370
Ryan Hsu 7 years ago
parent
commit
0e878fa952
1 changed files with 14 additions and 4 deletions
  1. 14 4
      core/hdd/src/wlan_hdd_main.c

+ 14 - 4
core/hdd/src/wlan_hdd_main.c

@@ -13811,11 +13811,21 @@ void hdd_pld_ipa_uc_shutdown_pipes(void)
 void hdd_set_rx_mode_rps(bool enable)
 {
 	struct cds_config_info *cds_cfg = cds_get_ini_config();
-	struct hdd_context *hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
-	struct hdd_adapter *adapter = hdd_get_adapter(hdd_ctx, QDF_SAP_MODE);
+	struct hdd_context *hdd_ctx;
+	struct hdd_adapter *adapter;
+
+	if (!cds_cfg)
+		return;
+
+	hdd_ctx = cds_get_context(QDF_MODULE_ID_HDD);
+	if (!hdd_ctx)
+		return;
+
+	adapter = hdd_get_adapter(hdd_ctx, QDF_SAP_MODE);
+	if (!adapter)
+		return;
 
-	if (adapter && hdd_ctx &&
-	    !hdd_ctx->rps && cds_cfg->uc_offload_enabled) {
+	if (!hdd_ctx->rps && cds_cfg->uc_offload_enabled) {
 		if (enable && !cds_cfg->rps_enabled)
 			hdd_send_rps_ind(adapter);
 		else if (!enable && cds_cfg->rps_enabled)