mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
encodings: Explicitly say that base64 decoding falls through in a switch, fixes a warning in gcc 7+.
This commit is contained in:
parent
c1be2da977
commit
2363ba3749
1 changed files with 2 additions and 0 deletions
|
@ -79,9 +79,11 @@ static void base64_decode(luaL_Buffer *b, int c1, int c2, int c3, int c4, int n)
|
|||
switch(--n) {
|
||||
case 3:
|
||||
s[2] = (char) tuple;
|
||||
/* Falls through. */
|
||||
|
||||
case 2:
|
||||
s[1] = (char)(tuple >> 8);
|
||||
/* Falls through. */
|
||||
|
||||
case 1:
|
||||
s[0] = (char)(tuple >> 16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue