mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix ftp_login()
This commit is contained in:
parent
964e1174b4
commit
dd38c9e101
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ PHP_FUNCTION(ftp_login)
|
|||
zval *z_ftp;
|
||||
ftpbuf_t *ftp;
|
||||
char *user, *pass;
|
||||
int user_len, pass_len;
|
||||
size_t user_len, pass_len;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rss", &z_ftp, &user, &user_len, &pass, &pass_len) == FAILURE) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue