[x] I performed a cursory search to see if the bug report is relevant, not redundant, nor in conflict with other tickets.
Describe the bugdefault case of the switch block in LC_VerifyMsgLength() is missing a break;.
Purely a style/guidelines issue for consistency and future maintenance.
Checklist
Describe the bug
default
case of theswitch
block inLC_VerifyMsgLength()
is missing abreak;
. Purely a style/guidelines issue for consistency and future maintenance.Code snips https://github.com/nasa/LC/blob/2f177ae83a24445d6ab6997682a2ffa71dacbd31/fsw/src/lc_utils.c#L83-L92
Expected behavior All switch cases (including
default
) should be terminated by an unconditionalbreak
statement.Reporter Info Avi Weiss @thnkslprpt