#
a6a3aa5d |
| 24-Jun-2013 |
Xinchen Hui |
Merge branch 'PHP-5.4' into PHP-5.5 Conflicts: Zend/zend_API.c
|
#
9cf3e653 |
| 24-Jun-2013 |
Xinchen Hui |
Fixed bug (is_callable() triggers Fatal Error) This bug is also exists in 5.4, and previous fix by dsp is not complete for __callStatic stituation, see test script |
#
ecd9d762 |
| 24-Jun-2013 |
David Soria Parra |
Fix #65108 (is_callable() triggers Fatal Error) We have to check if the fcall info cache contains a pointer if we use __call, otherwise we endup in a static lookup. |
#
8075f1f4 |
| 24-Jun-2013 |
Remi Collet |
Use same logic to load WebP image that other formats |
#
f49b27e1 |
| 24-Jun-2013 |
Dmitry Stogov |
OPcache must be compatible with LiteSpeed SAPI |
#
9872835c |
| 24-Jun-2013 |
Stanislav Malyshev |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Fix bug #62759: Buggy grapheme_substr() on edge case
|
#
860a5c4b |
| 24-Jun-2013 |
Stanislav Malyshev |
Fix bug #62759: Buggy grapheme_substr() on edge case |
#
1beb24bd |
| 23-Jun-2013 |
Stanislav Malyshev |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Implements feature Bug #63472 ability to set SO_BINDTODEVICE on socket. Conflicts: ext/sockets/sockets.c
|
#
a0b4348a |
| 10-Jun-2013 |
Damjan Cvetko |
Implements feature Bug #63472 ability to set SO_BINDTODEVICE on socket. |
#
296a12ef |
| 23-Jun-2013 |
Adam Harvey |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Fix bug #65088 (Generated configure script is malformed on OpenBSD).
|
#
2531307b |
| 23-Jun-2013 |
Adam Harvey |
Fix bug #65088 (Generated configure script is malformed on OpenBSD). We fell foul of a "common urban legend"[0], which resulted in us backslash escaping double quotes that we didn't need
Fix bug #65088 (Generated configure script is malformed on OpenBSD). We fell foul of a "common urban legend"[0], which resulted in us backslash escaping double quotes that we didn't need to in acinclude.m4. This worked fine on most shells, but OpenBSD's ksh implementation really didn't like it. [0] http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Shell-Substitutions.html
show more ...
|
#
fc898ee0 |
| 21-Jun-2013 |
Remi Collet |
Fixed Bug #65060 imagecreatefrom... crashes with user streams Fixed Bug #65084 imagecreatefromjpeg fails with URL Regression introduced in 8a90aad (drop of USE_GD_IOCTX) Secure with
Fixed Bug #65060 imagecreatefrom... crashes with user streams Fixed Bug #65084 imagecreatefromjpeg fails with URL Regression introduced in 8a90aad (drop of USE_GD_IOCTX) Secure with php_stream_can_cast to avoid segfault in php_stream_cast. (encountered when imagecreatefromxpm with URL)
show more ...
|
#
c65d663a |
| 20-Jun-2013 |
Pierre Joye |
fix #65070, bgcolor does not use the same format as the input image with imagerotate |
#
77c46ba5 |
| 20-Jun-2013 |
Adam Harvey |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Fix the spelling of the php_cli_server_http_response_status_code_pair typedef. Change the search in get_status_string() to correctl
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Fix the spelling of the php_cli_server_http_response_status_code_pair typedef. Change the search in get_status_string() to correctly handle unknown codes.
show more ...
|
#
283f56af |
| 19-Jun-2013 |
Adam Harvey |
Change the search in get_status_string() to correctly handle unknown codes. This previously used a buggy implementation of binary search that would loop infinitely for unknown codes when
Change the search in get_status_string() to correctly handle unknown codes. This previously used a buggy implementation of binary search that would loop infinitely for unknown codes when searching in reason arrays of particular sizes (such as the one we have at the moment). Since C provides bsearch(), we'll just use that instead, since libc authors hopefully get this right. There was also an additional bug that was masked by the first one: the design was that an unknown code would result in get_status_string() returning NULL, which would then result in a segfault in append_http_status_line(), since it assumed that it would always receive a valid string pointer that could be handed off to smart_str_appends_ex(). We'll now return a placeholder in that case. Fixes bug #65066 (Cli server not responsive when responding with 422 http status code).
show more ...
|
#
8547628f |
| 19-Jun-2013 |
David Soria Parra |
Merge NEWS from PHP 5.4 branch |
#
2bac1ff1 |
| 19-Jun-2013 |
David Soria Parra |
Reorder NEWS for PHP 5.5.0 final |
#
f0eaa02f |
| 19-Jun-2013 |
Johannes Schlüter |
This will be PHP 5.3.28 |
#
e2bb74ab |
| 19-Jun-2013 |
Stanislav Malyshev |
sync NEWS |
#
dda3f404 |
| 19-Jun-2013 |
Stanislav Malyshev |
5.4.18 next |
#
86434be9 |
| 17-Jun-2013 |
Nikita Popov |
Fix bug #65051: count() off by one inside unset() nNumOfElements was incremented after the pDestructor code, so any code in the dtor would get a wrong number of elements. Right
Fix bug #65051: count() off by one inside unset() nNumOfElements was incremented after the pDestructor code, so any code in the dtor would get a wrong number of elements. Right now the bucket deletion code is replicated in four places, it should probably be moved off into one function (or rather, zend_hash_apply_deleter should be used everywhere). The codes are subtly different though in that the HANDLE_UNBLOCK_INTERRUPTIONS() happens in different places. In particular it seems odd that in some cases interruptions stay blocked during the destructor call.
show more ...
|
#
ca660c2f |
| 17-Jun-2013 |
Nikita Popov |
Update NEWS, UPGRADING and UPGRADING.INTERNALS |
#
a080611e |
| 17-Jun-2013 |
Stanislav Malyshev |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: Tests: PDO Mysql - update for fixed getColumnMeta() fix bug #48724
|
#
5ac0ee30 |
| 02-Jan-2013 |
Daniel Beardsley |
Tests: PDO Mysql - update for fixed getColumnMeta() The test has always been disabled... so it's never run anyway. Oh well. |
#
69d187de |
| 17-Jun-2013 |
Stanislav Malyshev |
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: readline can output control codes Bug #55694: Update readline test to support attempted_completion_over variable Bug #55694:
Merge branch 'PHP-5.4' into PHP-5.5 * PHP-5.4: readline can output control codes Bug #55694: Update readline test to support attempted_completion_over variable Bug #55694: Expose attempted_completion_over variable from readline library
show more ...
|