mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
media: cx24120: Add retval check for cx24120_message_send()
If cx24120_message_send() returns error, we should keep local struct
unchanged.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: 5afc9a25be
("[media] Add support for TechniSat Skystar S2")
Signed-off-by: Daniil Dulov <d.dulov@aladdin.ru>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
35ca8ce495
commit
96002c0ac8
@ -973,7 +973,9 @@ static void cx24120_set_clock_ratios(struct dvb_frontend *fe)
|
||||
cmd.arg[8] = (clock_ratios_table[idx].rate >> 8) & 0xff;
|
||||
cmd.arg[9] = (clock_ratios_table[idx].rate >> 0) & 0xff;
|
||||
|
||||
cx24120_message_send(state, &cmd);
|
||||
ret = cx24120_message_send(state, &cmd);
|
||||
if (ret != 0)
|
||||
return;
|
||||
|
||||
/* Calculate ber window rates for stat work */
|
||||
cx24120_calculate_ber_window(state, clock_ratios_table[idx].rate);
|
||||
|
Loading…
Reference in New Issue
Block a user