mirror of
https://github.com/curl/curl.git
synced 2026-04-23 01:42:11 +03:00
x509asn1: use FALLTHROUGH
... as no other comments are accepted since 014ed7c22f
This commit is contained in:
parent
93b34981fa
commit
205f5b5972
1 changed files with 2 additions and 2 deletions
|
|
@ -302,10 +302,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 */
|
||||
/* FALLTHROUGH */
|
||||
case 2:
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
/* fallthrough */
|
||||
/* FALLTHROUGH */
|
||||
default: /* case 1: */
|
||||
wc = (wc << 8) | *(const unsigned char *) from++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue