浏览代码

qcacld-3.0: Check for valid FILS info before referencing

Check if the FILS info is populated before deferencing
the value for the same.

Change-Id: Iabc7d11c4033c92a4047d29da915415cf5ca1167
CRs-Fixed: 2162242
Varun Reddy Yeturu 7 年之前
父节点
当前提交
ab628711da
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      core/mac/src/pe/lim/lim_process_fils.c

+ 4 - 0
core/mac/src/pe/lim/lim_process_fils.c

@@ -1849,6 +1849,10 @@ void lim_update_fils_rik(tpPESession pe_session,
 		return;
 	}
 
+	if (!pe_fils_info) {
+		pe_debug("No FILS info available in the session");
+		return;
+	}
 	if ((pe_fils_info->fils_rik_len > FILS_MAX_RIK_LENGTH) ||
 	    !pe_fils_info->fils_rik) {
 		pe_err("Fils rik len(%d) max %d", pe_fils_info->fils_rik_len,