aboutsummaryrefslogtreecommitdiff
path: root/lib/mpi/mpi-sub-ui.c
diff options
context:
space:
mode:
authorXiaomeng Tong <[email protected]>2022-03-27 16:13:00 +0800
committerMark Brown <[email protected]>2022-04-04 14:25:37 +0100
commitacc72863e0f11cd0bedc888b663700229f9ba5ff (patch)
treeebcaaa7a5673647c1f85aab380f1318903a80654 /lib/mpi/mpi-sub-ui.c
parent9c363532413cda3e2c6dfa10e5cca7cd221877a0 (diff)
codecs: rt5682s: fix an incorrect NULL check on list iterator
The bug is here: if (!dai) { The list iterator value 'dai' will *always* be set and non-NULL by for_each_component_dais(), so it is incorrect to assume that the iterator value will be NULL if the list is empty or no element is found (In fact, it will be a bogus pointer to an invalid struct object containing the HEAD). Otherwise it will bypass the check 'if (!dai) {' (never call dev_err() and never return -ENODEV;) and lead to invalid memory access lately when calling 'rt5682s_set_bclk1_ratio(dai, factor);'. To fix the bug, just return rt5682s_set_bclk1_ratio(dai, factor); when found the 'dai', otherwise dev_err() and return -ENODEV; Cc: [email protected] Fixes: bdd229ab26be9 ("ASoC: rt5682s: Add driver for ALC5682I-VS codec") Signed-off-by: Xiaomeng Tong <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'lib/mpi/mpi-sub-ui.c')
0 files changed, 0 insertions, 0 deletions