Commit 4f47bf56 authored by Simo Sorce's avatar Simo Sorce

Keep static analyzers happy

Make it clear fall through is intentional.
Signed-off-by: default avatarSimo Sorce <simo@redhat.com>
parent 62913d8b
...@@ -976,6 +976,7 @@ asn_strtol_lim(const char *str, const char **end, long *lp) { ...@@ -976,6 +976,7 @@ asn_strtol_lim(const char *str, const char **end, long *lp) {
case '-': case '-':
last_digit_max++; last_digit_max++;
sign = -1; sign = -1;
/* FALL THROUGH */
case '+': case '+':
str++; str++;
if(str >= *end) { if(str >= *end) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment