[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2009-05-26 Thread Jani Taskinen
janiTue May 26 08:02:32 2009 UTC Modified files: /php-src/ext/zlib zlib.c Log: - Add note about missing break http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.225r2=1.226diff_format=u Index: php-src/ext/zlib/zlib.c diff -u

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2008-08-01 Thread Arnaud Le Blanc
lbarnaudSat Aug 2 02:36:14 2008 UTC Modified files: /php-src/ext/zlib zlib.c Log: Avoid leaks when zlib streams can not be closed properly. http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.219r2=1.220diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2007-02-02 Thread Michael Wallner
mikeFri Feb 2 17:11:10 2007 UTC Modified files: /php-src/ext/zlib zlib.c Log: - add note about the past for the future, see http://bugs.php.net/?id=40310edit=1 http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.213r2=1.214diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-11-16 Thread Michael Wallner
mikeThu Nov 16 13:36:03 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: - fix protos http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.211r2=1.212diff_format=u Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.211

[PHP-CVS] cvs: php-src /ext/zlib zlib.c /ext/zlib/tests ob_004.phpt ob_005.phpt

2006-09-04 Thread Michael Wallner
mikeMon Sep 4 10:31:12 2006 UTC Added files: /php-src/ext/zlib/tests ob_004.phpt ob_005.phpt Modified files: /php-src/ext/zlib zlib.c Log: - fix issues with ob_start(ob_gzhandler) - add tests

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-08-30 Thread Michael Wallner
mikeWed Aug 30 12:07:04 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: - avoid a loop around deflate() by using Z_SYNC_FLUSH for standard write http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.205r2=1.206diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-08-30 Thread Michael Wallner
mikeWed Aug 30 14:42:26 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: - allow (de)activation with ini_set() http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.206r2=1.207diff_format=u Index: php-src/ext/zlib/zlib.c diff -u

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-07-27 Thread Nuno Lopes
nlopess Thu Jul 27 15:53:47 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: convert void* to zstr when using the 't' parameter type http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.202r2=1.203diff_format=u Index: php-src/ext/zlib/zlib.c diff

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-07-08 Thread Nuno Lopes
nlopess Sat Jul 8 21:54:49 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: change char* to void* when using the 't' parameter (as noted by Andrei) http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.201r2=1.202diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-07-07 Thread Nuno Lopes
nlopess Fri Jul 7 23:30:30 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: upgrade a couple of functions to Unicode http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.200r2=1.201diff_format=u Index: php-src/ext/zlib/zlib.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-07-07 Thread Andrei Zmievski
+/* {{{ proto array gzfile(string filename [, int use_include_path]) U + Read and uncompress entire .gz-file into an array */ PHP_FUNCTION(gzfile) { char *filename; int filename_len; + zend_uchar filename_type; long flags = 0; char buf[8192];

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-06-26 Thread Antony Dovgal
tony2001Mon Jun 26 22:53:42 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: MFB: don't try to inflate empty strings http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.198r2=1.199diff_format=u Index: php-src/ext/zlib/zlib.c diff -u

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-06-26 Thread Antony Dovgal
tony2001Mon Jun 26 23:22:45 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: zero-terminate strings produced with FORCE_DEFLATE http://cvs.php.net/viewvc.cgi/php-src/ext/zlib/zlib.c?r1=1.199r2=1.200diff_format=u Index: php-src/ext/zlib/zlib.c

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-04-29 Thread Frank M. Kromann
fmk Sat Apr 29 14:38:35 2006 UTC Modified files: /php-src/ext/zlib zlib.c Log: fix build. ZSTR() must be applied to the buf argument of php_stream macros http://cvs.php.net/viewcvs.cgi/php-src/ext/zlib/zlib.c?r1=1.192r2=1.193diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-10-25 Thread Michael Wallner
mikeTue Oct 25 11:13:55 2005 EDT Modified files: /php-src/ext/zlib zlib.c Log: - fix bug #34821 zlib encoders fail on widely varying binary data on windows http://cvs.php.net/diff.php/php-src/ext/zlib/zlib.c?r1=1.185r2=1.186ty=u Index:

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-10-25 Thread Michael Wallner
mikeTue Oct 25 11:35:24 2005 EDT Modified files: /php-src/ext/zlib zlib.c Log: - fix the fix http://cvs.php.net/diff.php/php-src/ext/zlib/zlib.c?r1=1.186r2=1.187ty=u Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.186

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-09-02 Thread Ilia Alshanetsky
iliaa Fri Sep 2 13:25:10 2005 EDT Modified files: /php-src/ext/zlib zlib.c Log: Resolved bug #34240. # Thanks to xuefer at 21cn dot com for providing it. http://cvs.php.net/diff.php/php-src/ext/zlib/zlib.c?r1=1.184r2=1.185ty=u Index:

Re: [PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-08-25 Thread Andi Gutmans
How are we doing with this? Is it a new bug in 5.0.5 and 5.1.0? At 12:06 PM 8/24/2005, Xuefer wrote: this patch produce bug: http://bugs.php.net/bug.php?id=34240 -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP CVS Mailing List

Re: [PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-08-24 Thread Xuefer
this patch produce bug: http://bugs.php.net/bug.php?id=34240 -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2005-08-21 Thread Ilia Alshanetsky
iliaa Sun Aug 21 12:02:27 2005 EDT Modified files: /php-src/ext/zlib zlib.c Log: Fixed bug #34191 (ob_gzhandler does not enforce trailing \0). http://cvs.php.net/diff.php/php-src/ext/zlib/zlib.c?r1=1.183r2=1.184ty=u Index: php-src/ext/zlib/zlib.c diff -u

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2003-08-24 Thread Stefan Roehrich
sr Sun Aug 24 09:32:51 2003 EDT Modified files: /php-src/ext/zlib zlib.c Log: Fixed zlib.output_compression without register_long_vars set. Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.175 php-src/ext/zlib/zlib.c:1.176 ---

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2003-08-14 Thread Jani Taskinen
sniper Sun Aug 10 21:56:43 2003 EDT Modified files: /php-src/ext/zlib zlib.c Log: Nuke unused variable Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.174 php-src/ext/zlib/zlib.c:1.175 --- php-src/ext/zlib/zlib.c:1.174 Sat Aug 9

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2003-08-09 Thread Derick Rethans
derick Sat Aug 9 07:20:38 2003 EDT Modified files: /php-src/ext/zlib zlib.c Log: - Fix memleak (this strndup is totally unnecessary) Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.173 php-src/ext/zlib/zlib.c:1.174 ---

[PHP-CVS] cvs: php-src /ext/zlib zlib.c

2003-07-27 Thread Ilia Alshanetsky
iliaa Sun Jul 27 14:16:06 2003 EDT Modified files: /php-src/ext/zlib zlib.c Log: Fixed bug #24827 (ob_gzhandler overrides Vary header) Index: php-src/ext/zlib/zlib.c diff -u php-src/ext/zlib/zlib.c:1.172 php-src/ext/zlib/zlib.c:1.173 ---