From: Rasmus Lerdorf Date: Wed, 21 Jan 2015 06:41:18 +0000 (-0800) Subject: Missed removing a couple of _len vars X-Git-Tag: PRE_PHP7_REMOVALS~25^2~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c2465211af91fa4a81498ee3e149533b8e792329;p=php Missed removing a couple of _len vars --- diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index f1b8da2cbc..242944eefb 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1715,7 +1715,7 @@ PHP_FUNCTION(imap_mail_copy) zval *streamind; zend_long options = 0; zend_string *seq, *folder; - int seq_len, folder_len, argc = ZEND_NUM_ARGS(); + int argc = ZEND_NUM_ARGS(); pils *imap_le_struct; if (zend_parse_parameters(argc, "rSS|l", &streamind, &seq, &folder, &options) == FAILURE) { @@ -2388,7 +2388,7 @@ PHP_FUNCTION(imap_savebody) pils *imap_ptr = NULL; php_stream *writer = NULL; zend_string *section = NULL; - int section_len = 0, close_stream = 1; + int close_stream = 1; zend_long msgno, flags = 0; if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "rzl|Sl", &stream, &out, &msgno, §ion, &flags)) { @@ -2508,7 +2508,6 @@ PHP_FUNCTION(imap_binary) { zend_string *text; char *decode; - int text_len; unsigned long newlength; if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) {