Bladeren bron

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 jaren geleden
bovenliggende
commit
0af2ee3995
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  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);