소스 검색

qcacld-3.0: Remove logs in csr_nonscan_active_ll_peek_head

Remove logs in csr_nonscan_active_ll_peek_head to prevent
excessive logging while testing CVE-2017-0624

Change-Id: Ie5ab57d36fc05a3eac0d4fdba33a72b11eb7c561
CRs-Fixed: 2573914
Gururaj Pandurangi 5 년 전
부모
커밋
847342e013
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      core/sme/src/csr/csr_util.c

+ 2 - 3
core/sme/src/csr/csr_util.c

@@ -444,10 +444,9 @@ tListElem *csr_nonscan_active_ll_peek_head(struct mac_context *mac_ctx,
 
 	cmd = wlan_serialization_peek_head_active_cmd_using_psoc(mac_ctx->psoc,
 								 false);
-	if (!cmd) {
-		sme_err("No cmd found");
+	if (!cmd)
 		return NULL;
-	}
+
 	sme_cmd = cmd->umac_cmd;
 
 	return &sme_cmd->Link;