diff options
Diffstat (limited to 'ext/imap/imap.c')
-rw-r--r-- | ext/imap/imap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c index dd34652c48..ac60283d93 100644 --- a/ext/imap/imap.c +++ b/ext/imap/imap.c @@ -838,7 +838,7 @@ void imap_do_open(INTERNAL_FUNCTION_PARAMETERS, int persistent) Open an IMAP stream to a mailbox */ PHP_FUNCTION(imap_open) { - return imap_do_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); + imap_do_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); } /* }}} */ @@ -2583,6 +2583,7 @@ PHP_FUNCTION(imap_utf7_decode) case ST_DECODE0: state++; case ST_NORMAL: + ; } } } @@ -2639,6 +2640,7 @@ PHP_FUNCTION(imap_utf7_decode) *outp++ |= UNB64(*inp); state = ST_DECODE0; case ST_NORMAL: + ; } } } @@ -2765,6 +2767,7 @@ PHP_FUNCTION(imap_utf7_encode) *outp++ = B64(*inp++); state = ST_ENCODE0; case ST_NORMAL: + ; } } } |