summaryrefslogtreecommitdiff
path: root/ext/imap/php_imap.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@lerdorf.com>2015-01-20 22:41:18 -0800
committerRasmus Lerdorf <rasmus@lerdorf.com>2015-01-20 22:41:18 -0800
commitc2465211af91fa4a81498ee3e149533b8e792329 (patch)
treec9b6beb0a91f35ea74555c0e8050a3e47660dfa1 /ext/imap/php_imap.c
parentfa06343d7e0e04f4a660218f6dbb7ce18c3f090b (diff)
downloadphp-git-c2465211af91fa4a81498ee3e149533b8e792329.tar.gz
Missed removing a couple of _len vars
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r--ext/imap/php_imap.c5
1 files changed, 2 insertions, 3 deletions
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, &section, &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) {