File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1514,6 +1514,8 @@ static php_iconv_err_t _php_iconv_mime_decode(smart_str *pretval, const char *st
1514
1514
} else {
1515
1515
break ;
1516
1516
}
1517
+ /* TODO might want to rearrange logic so this is more obvious */
1518
+ fallthrough ;
1517
1519
1518
1520
case 9 : /* choice point, seeing what to do next.*/
1519
1521
switch (* p1 ) {
@@ -1537,7 +1539,7 @@ static php_iconv_err_t _php_iconv_mime_decode(smart_str *pretval, const char *st
1537
1539
break ;
1538
1540
}
1539
1541
}
1540
- /* break is omitted intentionally */
1542
+ fallthrough ;
1541
1543
1542
1544
case '\r' : case '\n' : case ' ' : case '\t' : {
1543
1545
zend_string * decoded_text ;
@@ -1688,7 +1690,7 @@ static php_iconv_err_t _php_iconv_mime_decode(smart_str *pretval, const char *st
1688
1690
scan_stat = 1 ;
1689
1691
break ;
1690
1692
}
1691
- /* break is omitted intentionally */
1693
+ fallthrough ;
1692
1694
1693
1695
default :
1694
1696
_php_iconv_appendc (pretval , * p1 , cd_pl );
You can’t perform that action at this time.
0 commit comments