diff options
-rw-r--r-- | ext/imap/imap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c index d93e3400c9..38a0edb8b1 100644 --- a/ext/imap/imap.c +++ b/ext/imap/imap.c @@ -2285,7 +2285,7 @@ PHP_FUNCTION(imap_utf7_decode) case ST_DECODE0: state++; case ST_NORMAL: - ; + break; } } } @@ -2342,7 +2342,7 @@ PHP_FUNCTION(imap_utf7_decode) *outp++ |= UNB64(*inp); state = ST_DECODE0; case ST_NORMAL: - ; + break; } } } @@ -2469,7 +2469,7 @@ PHP_FUNCTION(imap_utf7_encode) *outp++ = B64(*inp++); state = ST_ENCODE0; case ST_NORMAL: - ; + break; } } } |