Merge "asoc: update error check to avoid fix crash issues"

This commit is contained in:
qctecmdr
2020-07-16 23:56:45 -07:00
committed by Gerrit - the friendly Code Review server
melakukan 33ea77356f

Melihat File

@@ -30529,7 +30529,7 @@ static int msm_routing_put_pll_clk_drift(struct snd_kcontrol *kcontrol,
clk_drift = ucontrol->value.integer.value[1];
clk_reset = ucontrol->value.integer.value[2];
if (be_idx < 0 && be_idx >= MSM_BACKEND_DAI_MAX) {
if (be_idx < 0 || be_idx >= MSM_BACKEND_DAI_MAX) {
pr_err("%s: Invalid be id %d\n", __func__, be_idx);
return -EINVAL;
}