Pārlūkot izejas kodu

qcacld-3.0: Fix possible null pointer dereference

Fix possible null pointer deference in wlan_ipa_uc_ol_init when
accessing passed osdev argument.

Change-Id: I98b2679b7e73041315c4ccc2858eff79fbbcf026
CRs-Fixed: 2484996
Sravan Kumar Kairam 5 gadi atpakaļ
vecāks
revīzija
02a761e986
1 mainītis faili ar 6 papildinājumiem un 0 dzēšanām
  1. 6 0
      components/ipa/core/src/wlan_ipa_core.c

+ 6 - 0
components/ipa/core/src/wlan_ipa_core.c

@@ -3117,6 +3117,12 @@ QDF_STATUS wlan_ipa_uc_ol_init(struct wlan_ipa_priv *ipa_ctx,
 
 	ipa_debug("enter");
 
+	if (!osdev) {
+		ipa_err("osdev null");
+		status = QDF_STATUS_E_FAILURE;
+		goto fail_return;
+	}
+
 	for (i = 0; i < WLAN_IPA_MAX_SESSION; i++) {
 		ipa_ctx->vdev_to_iface[i] = WLAN_IPA_MAX_SESSION;
 		ipa_ctx->vdev_offload_enabled[i] = false;