Commit 51a7fdc6 authored by Lev Walkin's avatar Lev Walkin

Merge pull request #67 from simo5/fallthrough

Keep static analyzers happy
parents a1e5b9d3 4f47bf56
...@@ -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