浏览代码

qcacmn: Fix for NULL check reference in hif_get_hal_handle()

Fixe for Null check dereferencing pointers

Change-Id: I706b5959a85ab381594d7cab7e7dba95435f85f5
CRs-Fixed: 2230161
Akshay Kosigi 7 年之前
父节点
当前提交
0f345aee16
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      hif/src/hif_main.h

+ 4 - 0
hif/src/hif_main.h

@@ -210,6 +210,10 @@ struct hif_softc {
 static inline void *hif_get_hal_handle(void *hif_hdl)
 {
 	struct hif_softc *sc = (struct hif_softc *)hif_hdl;
+
+	if (!sc)
+		return NULL;
+
 	return sc->hal_soc;
 }