cellog Mon Sep 22 01:39:12 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/phar zip.c
Log:
workaround for Bug #46147 for PHP < 5.2.7
http://cvs.php.net/viewvc.cgi/php-src/ext/phar/zip.c?r1=1.47.2.19&r2=1.47.2.20&diff_format=u
Index: php-src/ext/phar/zip.c
diff -u php-src/ext/phar/zip.c:1.47.2.19 php-src/ext/phar/zip.c:1.47.2.20
--- php-src/ext/phar/zip.c:1.47.2.19 Sun Sep 14 06:31:20 2008
+++ php-src/ext/phar/zip.c Mon Sep 22 01:39:11 2008
@@ -484,6 +484,10 @@
/* 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;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php