mirror of
https://github.com/curl/curl.git
synced 2026-06-21 19:05:39 +03:00
x509asn1: add /* fallthrough */ in switch() case
This commit is contained in:
parent
e6917d3b77
commit
9cd4d6518f
1 changed files with 2 additions and 0 deletions
|
|
@ -297,8 +297,10 @@ utf8asn1str(char * * to, int type, const char * from, const char * end)
|
|||
case 4:
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
/* fallthrough */
|
||||
case 2:
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
/* fallthrough */
|
||||
default: /* case 1: */
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue