Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4de57756 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "dsp: Add size check for afe set and get functions"

parents 9de103a3 3c259b5e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -8456,6 +8456,7 @@ static int afe_set_cal_sp_th_vi_cfg(int32_t cal_type, size_t data_size,
	uint32_t mode;

	if (cal_data == NULL ||
	    data_size != sizeof(*cal_data) ||
	    this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
		goto done;

@@ -8599,6 +8600,7 @@ static int afe_get_cal_sp_th_vi_param(int32_t cal_type, size_t data_size,
	int ret = 0;

	if (cal_data == NULL ||
	    data_size != sizeof(*cal_data) ||
	    this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
		return 0;