summaryrefslogtreecommitdiff
path: root/ext/zip/php_zip.c
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2020-02-28 10:21:19 +0100
committerRemi Collet <remi@php.net>2020-02-28 10:21:19 +0100
commit5b2d4c0eccafcd648e574012a1c5331d6e1b1a4f (patch)
tree28155f58e2135b41d0629cd6d78ce51bf3196f49 /ext/zip/php_zip.c
parent2aecf3aba90941a2ac2642180f340e3b7118a13a (diff)
downloadphp-git-5b2d4c0eccafcd648e574012a1c5331d6e1b1a4f.tar.gz
Fix #79315 ZipArchive::addFile doesn't honor start/length parameters
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r--ext/zip/php_zip.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index e607f0f077..f65f70621e 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -1824,7 +1824,8 @@ static ZIPARCHIVE_METHOD(addFile)
entry_name_len = ZSTR_LEN(filename);
}
- if (php_zip_add_file(intern, ZSTR_VAL(filename), ZSTR_LEN(filename), entry_name, entry_name_len, 0, 0) < 0) {
+ if (php_zip_add_file(intern, ZSTR_VAL(filename), ZSTR_LEN(filename),
+ entry_name, entry_name_len, offset_start, offset_len) < 0) {
RETURN_FALSE;
} else {
RETURN_TRUE;