mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
Missed removing a couple of _len vars
This commit is contained in:
parent
fa06343d7e
commit
c2465211af
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user