Revision tags: php-7.1.12RC1, php-7.2.0RC6, php-7.0.26RC1 |
|
#
49ea143b |
| 26-Oct-2017 |
Dmitry Stogov |
Encapsulate reference-counting primitives. Prohibit direct update of GC_REFCOUNT(), GC_SET_REFCOUNT(), GC_ADDREF() and GC_DELREF() shoukf be instead. Added mactros to validate reference-count
Encapsulate reference-counting primitives. Prohibit direct update of GC_REFCOUNT(), GC_SET_REFCOUNT(), GC_ADDREF() and GC_DELREF() shoukf be instead. Added mactros to validate reference-counting (disabled for now). These macros are going to be used to eliminate race-condintions during reference-counting on data shared between threads.
show more ...
|
Revision tags: php-7.1.11, php-5.6.32, php-7.2.0RC5, php-7.0.25, php-7.1.11RC1, php-7.2.0RC4, php-7.0.25RC1, php-7.1.10, php-7.2.0RC3, php-7.0.24 |
|
#
3a4db74e |
| 26-Sep-2017 |
Nikita Popov |
Create $http_response_header even if not used Extensions are relying on it.
|
Revision tags: php-7.2.0RC2, php-7.1.10RC1, php-7.0.24RC1, php-7.1.9, php-7.2.0RC1, php-7.0.23, php-7.1.9RC1, php-7.2.0beta3, php-7.0.23RC1 |
|
#
513b0093 |
| 06-Aug-2017 |
Xinchen Hui |
Refactor php_url struct to save memory dup in common cases
|
Revision tags: php-7.1.8, php-7.2.0beta2, php-7.0.22, php-7.1.8RC1, php-7.2.0beta1, php-7.0.22RC1, php-5.6.31, php-7.0.21, php-7.1.7, php-7.2.0alpha3, php-7.1.7RC1, php-7.0.21RC1, php-7.2.0alpha2, php-7.1.6, php-7.2.0alpha1, php-7.0.20, php-7.1.6RC1, php-7.0.20RC1, php-7.1.5, php-7.0.19, php-7.0.19RC1, php-7.1.5RC1, php-7.1.4, php-7.0.18, php-7.1.4RC1, php-7.0.18RC1, php-7.1.3, php-7.0.17, php-7.1.3RC1, php-7.0.17RC1, php-7.1.2, php-7.0.16, php-7.0.16RC1, php-7.1.2RC1, php-5.6.30, php-7.0.15, php-5.6.30RC1, php-7.1.1RC1, php-7.0.15RC1, php-7.1.1, php-5.6.29, php-7.0.14, php-7.1.0, php-5.6.29RC1, php-7.0.14RC1, php-7.1.0RC6, php-5.6.28, php-7.0.13, php-5.6.28RC1, php-7.1.0RC5, php-7.0.13RC1, php-7.1.0RC4, php-5.6.27, php-7.0.12, php-7.1.0RC3, php-5.6.27RC1, php-7.0.12RC1, php-5.6.26, php-7.1.0RC2, php-7.0.11, php-5.6.26RC1, php-7.1.0RC1, php-7.0.11RC1, php-7.1.0beta3, php-5.6.25, php-7.0.10, php-7.1.0beta2, php-5.6.25RC1, php-7.0.10RC1, php-7.1.0beta1, php-5.6.24, php-7.0.9, php-5.5.38, php-5.6.24RC1, php-7.1.0alpha3, php-7.0.9RC1, php-7.1.0alpha2, php-7.0.8, php-5.6.23, php-5.5.37, php-5.6.23RC1, php-7.0.8RC1, php-7.1.0alpha1, php-5.6.22, php-5.5.36, php-7.0.7, php-5.6.22RC1, php-7.0.7RC1 |
|
#
5eeb4147 |
| 05-May-2016 |
Nikita Popov |
Write $http_response_header to local var at end Rather than trying to modify it mid-request. The protection against tampering that was used (addref) violates COW because an rc>1 array
Write $http_response_header to local var at end Rather than trying to modify it mid-request. The protection against tampering that was used (addref) violates COW because an rc>1 array is being modified. Test bug69337.phpt changed because it was testing tampering with $http_response_header while the HTTP request is being executed. This simply no longer matters, so behavior is the same as if no tampering occurred.
show more ...
|
#
ec1b7b93 |
| 07-Jan-2017 |
Nikita Popov |
Fix OOB read introduced by previous commit Ooops...
|
Revision tags: php-7.0.6, php-5.6.21, php-5.5.35, php-5.6.21RC1, php-7.0.6RC1, php-5.6.20 |
|
#
5146d9f8 |
| 30-Mar-2016 |
Rowan Collins |
http_fopen_wrapper.c - Handle HTTP headers with varying white space The stream handler assumed all HTTP headers contained exactly one space, but the standard says there may be zero or mo
http_fopen_wrapper.c - Handle HTTP headers with varying white space The stream handler assumed all HTTP headers contained exactly one space, but the standard says there may be zero or more. Should fix Bug #47021, and any other edge cases caused by a web server sending unusual spacing, e.g. the MIME type discovered from Content-Type: can no longer contain leading whitespace. We strip trailing whitespace from the headers added into $http_response_header as well.
show more ...
|
#
dac6c639 |
| 04-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017
|
#
478f119a |
| 04-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017
|
#
9e29f841 |
| 02-Jan-2017 |
Sammy Kaye Powers |
Update copyright headers to 2017
|
#
4b2cbc3f |
| 17-Nov-2016 |
Julien Pauli |
Improvement for bug73297
|
#
94374c51 |
| 23-Oct-2016 |
Rowan Collins |
http_fopen_wrapper.c - bug#73297 Skip past "100 Continue" responses
|
#
0f9225f8 |
| 17-Nov-2016 |
Julien Pauli |
Improvement for bug73297
|
#
417162a9 |
| 23-Oct-2016 |
Rowan Collins |
http_fopen_wrapper.c - bug#73297 Skip past "100 Continue" responses
|
#
607049f2 |
| 17-Nov-2016 |
Julien Pauli |
Improvement for bug73297
|
#
f20d261a |
| 23-Oct-2016 |
Rowan Collins |
http_fopen_wrapper.c - bug#73297 Skip past "100 Continue" responses
|
#
49030f2a |
| 17-Nov-2016 |
Julien Pauli |
Improvement for bug73297
|
#
aec1a5ec |
| 23-Oct-2016 |
Rowan Collins |
http_fopen_wrapper.c - bug#73297 Skip past "100 Continue" responses
|
#
2104bea5 |
| 12-Nov-2016 |
Kalle Sommer Nielsen |
Remove Netware support If this does not break the Unix system somehow, I'll be amazed. This should get most of it out, apologies for any errors this may cause on non-Windows ends which I can
Remove Netware support If this does not break the Unix system somehow, I'll be amazed. This should get most of it out, apologies for any errors this may cause on non-Windows ends which I cannot test atm.
show more ...
|
#
3823bfc6 |
| 04-Aug-2016 |
Nikita Popov |
Avoid use of scratch space in HTTP fopen wrapper Instead directly write into req_buf smart_str.
|
#
318d3b3a |
| 28-Jul-2016 |
Ville Hukkamäki |
Implement request #27814 Construct HTTP request headers into smart_str and send whole request in one go.
|
#
adc95c51 |
| 23-Jun-2016 |
Dmitry Stogov |
Fixed compilation warnings
|
#
16160386 |
| 21-Jun-2016 |
Dmitry Stogov |
Added ZEND_ATTRIBUTE_FORMAT to some middind functions. "%p" replaced by ZEND_LONG_FMT to avoid compilation warnings. Fixed most incorrect use cases of format specifiers.
|
Revision tags: php-5.5.34, php-7.0.5, php-5.6.20RC1, php-7.0.5RC1 |
|
#
c3cf6f2a |
| 10-Mar-2016 |
Xinchen Hui |
emalloc never returns NULL (partially fix for #71753)
|
Revision tags: php-5.6.19, php-5.5.33, php-7.0.4, php-5.6.19RC1, php-7.0.4RC1, php-5.6.18, php-7.0.3, php-5.5.32, php-5.6.18RC1, php-7.0.3RC1, php-5.6.17, php-5.5.31, php-7.0.2 |
|
#
49493a2d |
| 01-Jan-2016 |
Lior Kaplan |
Happy new year (Update copyright to 2016)
|
Revision tags: php-7.0.2RC1, php-5.6.17RC1, php-7.0.1RC1, php-7.0.0, php-5.6.16, php-7.0.0RC8, php-7.0.0RC7, php-5.6.16RC1 |
|
#
c67fc6bb |
| 29-Oct-2015 |
Dmitry Stogov |
Fixed memory leak in php_stream_context_set_option()
|