summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--ext/ftp/ftp.c5
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index c0c3bdee9f..5ae4e5a165 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,9 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 7.3.21
+- FTP:
+ . Fixed bug #55857 (ftp_size on large files). (cmb)
+
?? ??? ????, PHP 7.3.20
- Core:
diff --git a/ext/ftp/ftp.c b/ext/ftp/ftp.c
index 27def54672..0f6b711bd3 100644
--- a/ext/ftp/ftp.c
+++ b/ext/ftp/ftp.c
@@ -1133,6 +1133,8 @@ bail:
zend_long
ftp_size(ftpbuf_t *ftp, const char *path, const size_t path_len)
{
+ zend_long res;
+
if (ftp == NULL) {
return -1;
}
@@ -1145,7 +1147,8 @@ ftp_size(ftpbuf_t *ftp, const char *path, const size_t path_len)
if (!ftp_getresp(ftp) || ftp->resp != 213) {
return -1;
}
- return atol(ftp->inbuf);
+ ZEND_ATOL(res, ftp->inbuf);
+ return res;
}
/* }}} */