mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
qed/qed_mng_tlv: correctly zero out ->min instead of ->hour
This fixes an issue where ->hour would erroneously get zeroed out
instead of ->min because of a bad copy paste.
Found by Linux Verification Center (linuxtesting.org) with the SVACE
static analysis tool.
Fixes: f240b68822
("qed: Add support for processing fcoe tlv request.")
Signed-off-by: Daniil Tatianin <d-tatianin@yandex-team.ru>
Link: https://lore.kernel.org/r/20230315194618.579286-1-d-tatianin@yandex-team.ru
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
24994513ad
commit
470efd68a4
@@ -422,7 +422,7 @@ qed_mfw_get_tlv_time_value(struct qed_mfw_tlv_time *p_time,
|
|||||||
if (p_time->hour > 23)
|
if (p_time->hour > 23)
|
||||||
p_time->hour = 0;
|
p_time->hour = 0;
|
||||||
if (p_time->min > 59)
|
if (p_time->min > 59)
|
||||||
p_time->hour = 0;
|
p_time->min = 0;
|
||||||
if (p_time->msec > 999)
|
if (p_time->msec > 999)
|
||||||
p_time->msec = 0;
|
p_time->msec = 0;
|
||||||
if (p_time->usec > 999)
|
if (p_time->usec > 999)
|
||||||
|
Reference in New Issue
Block a user