Prechádzať zdrojové kódy

qcacld-3.0: Remove repeated memfree

Currently inside wlan_cfg80211_mc_infra_cp_free_bmiss_stats
memfree of cp_stats along with bmiss_cp_stats is present,
again after the wlan_cfg80211_mc_infra_cp_free_bmiss_stats
function repeated memfree of cp_stats is present

Remove cp_stats free from wlan_cfg80211_mc_infra_cp_free_bmiss_stats
function.

Change-Id: I306e06455ef1ac92043ee8412cf1cecd01e9dfbb
CRs-Fixed: 3115379
Divyajyothi Goparaju 3 rokov pred
rodič
commit
2b18be53ba

+ 6 - 3
os_if/cp_stats/src/wlan_cfg80211_mc_cp_stats.c

@@ -1,6 +1,7 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
  * above copyright notice and this permission notice appear in all
@@ -654,8 +655,10 @@ wlan_cfg80211_mc_infra_cp_free_twt_stats(struct infra_cp_stats_event *stats)
 static void
 wlan_cfg80211_mc_infra_cp_free_bmiss_stats(struct infra_cp_stats_event *stats)
 {
-	qdf_mem_free(stats->bmiss_infra_cp_stats);
-	qdf_mem_free(stats);
+	if (stats->bmiss_infra_cp_stats) {
+		qdf_mem_free(stats->bmiss_infra_cp_stats);
+		stats->bmiss_infra_cp_stats = NULL;
+	}
 }
 #else /* CONFIG_WLAN_BMISS */
 static void