소스 검색

qcacld-3.0: Return if memory allocation fails

If memory pNewBssDescriptor is allocated successfully, it should not
return, otherwise there is memory leak.

Return if memory pNewBssDescriptor allocation fails.

Change-Id: Ibe906abe890630efa1ea5dafaef40afc2822158e
CRs-Fixed: 2476403
bings 5 년 전
부모
커밋
0af2ee3995
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/sme/src/csr/csr_api_scan.c

+ 1 - 1
core/sme/src/csr/csr_api_scan.c

@@ -1776,7 +1776,7 @@ QDF_STATUS csr_scan_create_entry_in_scan_cache(struct mac_context *mac,
 		return QDF_STATUS_E_FAILURE;
 	}
 	pNewBssDescriptor = qdf_mem_malloc(size);
-	if (pNewBssDescriptor)
+	if (!pNewBssDescriptor)
 		return QDF_STATUS_E_FAILURE;
 
 	qdf_mem_copy(pNewBssDescriptor, pSession->pConnectBssDesc, size);