[PHP-CVS] com php-src: Avoid possible conditional jump depended on uninitialised value: ext/opcache/Optimizer/block_pass.c

2013-04-29 Thread Dmitry Stogov
Commit:4b83f4a01144d6e3308604a5e3742305f8c10552 Author:Dmitry Stogov dmi...@zend.com Mon, 29 Apr 2013 10:45:31 +0400 Parents: a5b4eeb5f02084e10913153a4dc5888ce4b43925 Branches: PHP-5.5 master Link:

[PHP-CVS] com php-src: Revert Add CURL_WRAPPERS_ENABLE constant: NEWS ext/curl/interface.c

2013-04-29 Thread Stanislav Malyshev
Commit:1d6a1fb5c87bc60fd0def2e2d32a2c4f4ad15fc0 Author:Stanislav Malyshev s...@php.net Sun, 28 Apr 2013 22:25:40 -0700 Parents: efe8f3f74de6f587edb2a73e18a7399ac41b5836 Branches: PHP-5.4.15 Link:

[PHP-CVS] com php-src: Fixed compilation warnings (issue #92): ext/opcache/Optimizer/zend_optimizer_internal.h

2013-04-29 Thread Dmitry Stogov
Commit:a5b4eeb5f02084e10913153a4dc5888ce4b43925 Author:Dmitry Stogov dmi...@zend.com Mon, 29 Apr 2013 10:32:08 +0400 Parents: 8a51bdd3cebf4bb2f49090560da918f70a535ade Branches: PHP-5.5 master Link:

[PHP-CVS] com php-src: Revert Fix conversion from unsigned char to char: sapi/cgi/cgi_main.c

2013-04-29 Thread David Soria Parra
Commit:86685aefabb70a3c24d1aedd8551019ebf24ed3b Author:David Soria Parra d...@php.net Mon, 29 Apr 2013 02:26:55 +0200 Parents: 983438a46385710fc3e1314fb7a956da09b6 Branches: PHP-5.5 master Link:

[PHP-CVS] com php-src: Revert Add CURL_WRAPPERS_ENABLE constant: NEWS ext/curl/interface.c

2013-04-29 Thread Stanislav Malyshev
Commit:4e773c1b92c5db328fbbca36e566a1c76957be63 Author:Stanislav Malyshev s...@php.net Sun, 28 Apr 2013 22:25:40 -0700 Parents: 7b9eabaf51d6b91d250b19d78d400993231e2a64 Branches: PHP-5.4 PHP-5.5 master Link:

Re: [PHP-CVS] com php-src: Fix conversion from unsigned char to char: sapi/cgi/cgi_main.c

2013-04-29 Thread Stas Malyshev
Hi! Are you sure about this change? Because this actually changes the semantics of the code. The following piece of code will now evaluate differently than before: *p = ' ' I also don't understand this change - this means 0xFF would now be skipped as space while before it was not. Is it the

Re: [PHP-CVS] com php-src: Fix conversion from unsigned char to char: sapi/cgi/cgi_main.c

2013-04-29 Thread David Soria Parra
On 04/29/2013 12:49 AM, Stas Malyshev wrote: Hi! Are you sure about this change? Because this actually changes the semantics of the code. The following piece of code will now evaluate differently than before: *p = ' ' I also don't understand this change - this means 0xFF would now be