#
ddd54401 |
| 05-Nov-2018 |
Anatol Belski |
Update NEWS [ci skip] |
#
fab72d75 |
| 05-Nov-2018 |
Anatol Belski |
Update NEWS [ci skip] |
#
7625f972 |
| 05-Nov-2018 |
Christoph M. Becker |
Fix #76825: Undefined symbols ___cpuid_count Apparently, the presence of `cpuid.h` is not necessarily sufficient to guarantee the availability of `__cpuid_count()`. We therefore test fo
Fix #76825: Undefined symbols ___cpuid_count Apparently, the presence of `cpuid.h` is not necessarily sufficient to guarantee the availability of `__cpuid_count()`. We therefore test for the latter explicitly.
show more ...
|
#
d7847973 |
| 05-Nov-2018 |
Remi Collet |
NEWS |
#
579d76d8 |
| 04-Nov-2018 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #76348: WSDL_CACHE_MEMORY causes Segmentation fault
|
#
0afc8189 |
| 04-Nov-2018 |
Christoph M. Becker |
Merge branch 'PHP-7.1' into PHP-7.2 * PHP-7.1: Fix #76348: WSDL_CACHE_MEMORY causes Segmentation fault
|
#
625f614c |
| 04-Nov-2018 |
Christoph M. Becker |
Fix #76348: WSDL_CACHE_MEMORY causes Segmentation fault “Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end.” |
#
d92f7630 |
| 02-Nov-2018 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
4daa4138 |
| 02-Nov-2018 |
Nikita Popov |
Fixed bug #77092 Weird that this worked for so long, probably because nearly all ext/standard functions use fast ZPP rather than ordinary ZPP. |
#
8827cc34 |
| 30-Oct-2018 |
Anatol Belski |
Fixed bug #77081 ftruncate() changes seek pointer in c mode |
#
17df3a19 |
| 29-Oct-2018 |
Peter Kokot |
[ci skip] Update NEWS |
#
69496a04 |
| 29-Oct-2018 |
Peter Kokot |
[ci skip] Update NEWS |
#
91a11111 |
| 29-Oct-2018 |
Peter Kokot |
[ci skip] Update NEWS |
#
829b0df7 |
| 27-Oct-2018 |
Christoph M. Becker |
Fix #71592: External entity processing never fails If the callback set via `xml_set_external_entity_ref_handler()` returns a falsy value, parsing is supposed to stop and the error number
Fix #71592: External entity processing never fails If the callback set via `xml_set_external_entity_ref_handler()` returns a falsy value, parsing is supposed to stop and the error number set to `XML_ERROR_EXTERNAL_ENTITY_HANDLING`. This is already correctly done by the libexpat binding, but the libxml2 binding ignores the return value. We fix this by calling `xmlStopParser()` which is available as of libxml 2.1.0[1] (PHP-7.1 requires at least libxml 2.6.11 anyway), and setting the desired `errNo` ourselves. [1] <http://xmlsoft.org/news.html>
show more ...
|
#
0d649059 |
| 27-Oct-2018 |
Christoph M. Becker |
Add TIDY_TAG_* constants supported by libtidy 5 Cf. <http://api.html-tidy.org/tidy/tidylib_api_5.0.0/tidyenum_8h.html#ae5b597c0999422ff383f08ab595ef5e8a16d20becf3c3cb022ddabccc83d8c314>. |
#
78c2e0e3 |
| 25-Oct-2018 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
902ec367 |
| 25-Oct-2018 |
Nikita Popov |
Merge branch 'PHP-7.1' into PHP-7.2
|
#
f1ceec55 |
| 25-Oct-2018 |
Nikita Popov |
Fixed bug #77058 Account for the fact that undef must be interpreted as null for the purposes of INC/DEC inference. |
#
33fa02ea |
| 24-Oct-2018 |
Joe Watkins |
bump versions |
#
3fb0f340 |
| 23-Oct-2018 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
db47e353 |
| 06-Oct-2018 |
Cameron Porter |
Fixed bug #50675 SOAP: Stop overwriting the node name when creating an XML node for an object reference. |
#
1d5baf16 |
| 23-Oct-2018 |
Remi Collet |
bump to 7.2.13-dev |
#
4ffa4155 |
| 23-Oct-2018 |
Christoph M. Becker |
[ci skip] Update NEWS wrt. php-7.3.0RC4 tagging |
#
10800106 |
| 21-Oct-2018 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #75282: xmlrpc_encode_request() crashes
|
#
502b187a |
| 21-Oct-2018 |
Christoph M. Becker |
Fix #75282: xmlrpc_encode_request() crashes Since we allow ext/xmlrpc to be built against a system libxmlrpc(-epi), we must not `efree` memory which has been allocated via `malloc`. To
Fix #75282: xmlrpc_encode_request() crashes Since we allow ext/xmlrpc to be built against a system libxmlrpc(-epi), we must not `efree` memory which has been allocated via `malloc`. To distinguish bundled and system libxmlrpc(-epi) we introduce the macro `HAVE_XMLRPC_BUNDLED` (analogous to how it is done by ext/gd). We deliberately keep the ugly `#ifdef`s, instead of tucking them away in an `XMLRPC_FREE()` macro, to not forget that it is a bad idea to fork and bundle a library, but to also allow building against an unpatched system lib.
show more ...
|