Question
Case statement fall through maintenance bug in usbd_cdc.c
Posted on June 06, 2018 at 20:38
cppcheck pointed out that usbd_cdc.c has a missing break statement around line 652.
The next case is a default:/break;, but if another case is inserted between the offender and the default, a fall through would happen.
Andrei