1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00

workaround for Bug #46147 for PHP < 5.2.7

This commit is contained in:
Greg Beaver
2008-09-22 01:39:11 +00:00
parent 17cfd5f24e
commit 498ffbc84f

View File

@@ -484,6 +484,10 @@ foundit:
/* construct actual offset to file start - local extra_len can be different from central extra_len */
entry.offset = entry.offset_abs =
sizeof(local) + entry.header_offset + PHAR_GET_16(local.filename_len) + PHAR_GET_16(local.extra_len);
#if PHP_VERSION_ID < 50207
/* work around Bug #46147 */
fp->writepos = fp->readpos = 0;
#endif
php_stream_seek(fp, entry.offset, SEEK_SET);
mydata->alias_len = entry.uncompressed_filesize;