Эх сурвалжийг харах

qcacmn: Check function pointer to avoid NULL point dereference

It calls spectral_process_phyerr of spectral operations without any
check. Which cause null point dereference potentially. So, check this
pointer before calling.

Change-Id: Iae246f847dd41e62b628223652a9527a65b43799
CRs-Fixed: 3055246
Wu Gao 3 жил өмнө
parent
commit
9fba485d3c

+ 4 - 0
target_if/spectral/target_if_spectral.h

@@ -2119,6 +2119,10 @@ void target_if_spectral_process_phyerr(
 	}
 
 	p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
+	if (!p_sops->spectral_process_phyerr) {
+		spectral_err("null spectral_process_phyerr");
+		return;
+	}
 	p_sops->spectral_process_phyerr(spectral, data, datalen,
 					p_rfqual, p_chaninfo,
 					tsf64, acs_stats);