summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Ignacio Torres <andresitorresm@gmail.com>2020-01-27 19:37:24 +0100
committerAndrés Ignacio Torres <andresitorresm@gmail.com>2020-01-27 19:37:24 +0100
commit1ca5718fc6c02a89c194d6482f23e41c193bfd33 (patch)
treedc475f9ee1cb4e3b19daae77e7fc2bd261484288
parente7c36079d6885ee9bd25f8cae70f0049d46b9d60 (diff)
optimize memory allocation on zip library
Signed-off-by: Andrés Ignacio Torres <andresitorresm@gmail.com>
-rw-r--r--system/libraries/Zip.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php
index 094f4c802..5fba1cf3a 100644
--- a/system/libraries/Zip.php
+++ b/system/libraries/Zip.php
@@ -406,13 +406,13 @@ class CI_Zip {
return FALSE;
}
- return $this->zipdata
- .$this->directory."\x50\x4b\x05\x06\x00\x00\x00\x00"
+ $footer = $this->directory."\x50\x4b\x05\x06\x00\x00\x00\x00"
.pack('v', $this->entries) // total # of entries "on this disk"
.pack('v', $this->entries) // total # of entries overall
.pack('V', self::strlen($this->directory)) // size of central dir
.pack('V', self::strlen($this->zipdata)) // offset to start of central dir
."\x00\x00"; // .zip file comment length
+ return $this->zipdata . $footer;
}
// --------------------------------------------------------------------