Переглянути джерело

qcacmn: Fix null pointer dereference in wifi_pos_oem_rsp_handler()

Add validation code to make sure wifi_pos_send_rsp
function pointer is not null.

Change-Id: I6761f5065b1a49855afac2691523c41bcf383b2b
CRs-Fixed: 2329346
Arif Hussain 6 роки тому
батько
коміт
738581ae50
1 змінених файлів з 5 додано та 0 видалено
  1. 5 0
      umac/wifi_pos/src/wifi_pos_main.c

+ 5 - 0
umac/wifi_pos/src/wifi_pos_main.c

@@ -581,6 +581,11 @@ int wifi_pos_oem_rsp_handler(struct wlan_objmgr_psoc *psoc,
 		return -EINVAL;
 	}
 
+	if (!wifi_pos_send_rsp) {
+		wifi_pos_err("invalid response handler");
+		return -EINVAL;
+	}
+
 	wifi_pos_debug("oem data rsp, len: %d to pid: %d", len, app_pid);
 
 	if (oem_rsp->rsp_len_2 + oem_rsp->dma_len) {