1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

x509asn1: use FALLTHROUGH

... as no other comments are accepted since 014ed7c22f
This commit is contained in:
Daniel Stenberg 2018-08-21 22:26:36 +02:00
parent 93b34981fa
commit 205f5b5972
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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++;
}