Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump year | Xinchen Hui | 2014-01-03 | 64 | -64/+64 |
| | |||||
* | Merge branch 'PHP-5.5' into PHP-5.6 | krakjoe | 2014-01-01 | 1 | -18/+25 |
|\ | | | | | | | | | * PHP-5.5: fix #66375 bad logic in sapi header callback routine | ||||
| * | Merge branch 'PHP-5.4' into PHP-5.5 | krakjoe | 2014-01-01 | 1 | -18/+25 |
| |\ | | | | | | | | | | | | | * PHP-5.4: fix #66375 bad logic in sapi header callback routine | ||||
| | * | fix #66375 bad logic in sapi header callback routine | krakjoe | 2014-01-01 | 1 | -18/+25 |
| | | | |||||
| | * | 5.4.25 next | Stanislav Malyshev | 2013-12-24 | 1 | -3/+3 |
| | | | |||||
* | | | Add E_DEPRECATED when populating $HTTP_RAW_POST_DATA | Michael Wallner | 2013-12-30 | 2 | -1/+6 |
| | | | |||||
* | | | add 'never' | Michael Wallner | 2013-12-30 | 1 | -0/+3 |
| | | | |||||
* | | | fix type | Michael Wallner | 2013-12-30 | 1 | -1/+1 |
| | | | |||||
* | | | s/BOOLEAN/ENTRY/ | Michael Wallner | 2013-12-30 | 1 | -1/+1 |
| | | | |||||
* | | | re-introduce always_populate_raw_post_data | Michael Wallner | 2013-12-30 | 3 | -0/+57 |
| | | | |||||
* | | | Merge branch 'PHP-5.5' into PHP-5.6 | Anatol Belski | 2013-12-12 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | | | | * PHP-5.5: Fixed bug #65486 mysqli_poll() is broken on Win x64 | ||||
| * | | Fixed bug #65486 mysqli_poll() is broken on Win x64 | Anatol Belski | 2013-12-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While this issue is visible in mysqli_poll() functions, the cause lays deeper in the stream to socket casting API. On Win x64 the SOCKET datatype is a 64 or 32 bit unsigned, while on Linux/Unix-like it's 32 bit signed integer. The game of casting 32 bit var to/from 64 bit pointer back and forth is the best way to break it. Further more, while socket and file descriptors are always integers on Linux, those are different things using different APIs on Windows. Even though using integer instead of SOCKET might work on Windows, this issue might need to be revamped more carefully later. By this time this patch is tested well with phpt and apps and shows no regressions, neither in mysqli_poll() nor in any other parts. | ||||
* | | | Merge branch 'PHP-5.5' into PHP-5.6 | Michael Wallner | 2013-12-06 | 1 | -5/+7 |
|\ \ \ | |/ / | | | | | | | | | | | | | * PHP-5.5: Fixed bug #61645 (fopen and O_NONBLOCK) fix possibly uninitialized value | ||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Michael Wallner | 2013-12-06 | 1 | -5/+7 |
| |\ \ | | |/ | | | | | | | | | | | | | * PHP-5.4: Fixed bug #61645 (fopen and O_NONBLOCK) fix possibly uninitialized value | ||||
| | * | Fixed bug #61645 (fopen and O_NONBLOCK) | Michael Wallner | 2013-12-06 | 1 | -5/+7 |
| | | | | | | | | | | | | | | | | | | if a mode like "rn" was passed to fopen(), then php_stream_parse_fopen_modes() would assign O_WRONLY to flags, because O_NONBLOCK tainted flags for the r/w/+ check | ||||
| | * | 5.4.24-dev now | Stanislav Malyshev | 2013-11-27 | 1 | -3/+3 |
| | | | |||||
| | * | 5.4.23-dev | Stanislav Malyshev | 2013-10-29 | 1 | -3/+3 |
| | | | |||||
| | * | 5.4.22-dev now | Stanislav Malyshev | 2013-10-01 | 1 | -3/+3 |
| | | | |||||
* | | | Merge branch 'PHP-5.5' into PHP-5.6 | Sara Golemon | 2013-12-03 | 1 | -1/+18 |
|\ \ \ | |/ / | | | | | | | | | | * PHP-5.5: Fix php_module_startup() when loading more than one additional module | ||||
| * | | Fix php_module_startup() when loading more than one additional module | Sara Golemon | 2013-12-03 | 1 | -1/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dereferencing addition_modules within php_module_startup would point to a vector entirely on the stack (which is of course, wrong). Use a specialized helper to keep BC with the current php_module_startup() calling semantics. Fixes 63159 Thanks to @a-j-k | ||||
| * | | 5.5.8-dev now | Julien Pauli | 2013-11-27 | 1 | -3/+3 |
| | | | |||||
| * | | 5.5.7 now | Julien Pauli | 2013-11-12 | 1 | -3/+3 |
| | | | |||||
| * | | Increment version number, since this will be 5.5.6. | Adam Harvey | 2013-10-23 | 1 | -3/+3 |
| | | | |||||
* | | | bump API versions | Ferenc Kovacs | 2013-11-06 | 1 | -1/+1 |
| | | | |||||
* | | | back to do_alloca() | Anatol Belski | 2013-10-31 | 1 | -3/+4 |
| | | | |||||
* | | | back to do_alloca(), reverted the wrong replacement | Anatol Belski | 2013-10-30 | 1 | -2/+3 |
| | | | |||||
* | | | Merge branch 'bug50333' of github.com:weltling/php-src into bug50333 | Anatol Belski | 2013-10-29 | 6 | -22/+18 |
|\ \ \ | |||||
| * | | | applied and fixed the original patch | Anatol Belski | 2013-10-17 | 5 | -21/+17 |
| | | | | | | | | | | | | | | | | initial work on the patch import done | ||||
| * | | | initial move on renaming files and fixing includes | Anatol Belski | 2013-10-17 | 1 | -1/+1 |
| | | | | |||||
* | | | | Added support for TLSv1.1 and TLSv1.2 | Daniel Lowrey | 2013-10-08 | 1 | -1/+5 |
|/ / / | |||||
* | | | add note about request_body and php://input | Michael Wallner | 2013-09-19 | 1 | -0/+1 |
| | | | |||||
* | | | better way to fix PRIu64 availability on windows | Anatol Belski | 2013-09-18 | 1 | -4/+3 |
| | | | |||||
* | | | Merge branch 'PHP-5.5' | Michael Wallner | 2013-09-18 | 1 | -1/+6 |
|\ \ \ | |/ / | | | | | | | | | | * PHP-5.5: fix a very rare case of use of uninitialized value combined with a memleak | ||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Michael Wallner | 2013-09-18 | 1 | -1/+6 |
| |\ \ | | |/ | | | | | | | | | | * PHP-5.4: fix a very rare case of use of uninitialized value combined with a memleak | ||||
| | * | fix a very rare case of use of uninitialized value combined with a | Michael Wallner | 2013-09-18 | 1 | -1/+6 |
| | | | | | | | | | | | | memleak | ||||
| | * | 5.4.21 now | Stanislav Malyshev | 2013-09-03 | 1 | -3/+3 |
| | | | |||||
| * | | 5.5.5 now | Julien Pauli | 2013-09-04 | 1 | -3/+3 |
| | | | |||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-19 | 1 | -3/+3 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: bump version Update NEWS Conflicts: configure.in main/php_version.h | ||||
| | * | bump version | Stanislav Malyshev | 2013-08-19 | 1 | -3/+3 |
| | | | |||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-18 | 1 | -1/+6 |
| |\ \ | | |/ | | | | | | | | | | | | | * PHP-5.4: new for fix #65225 Fixed #65225: PHP_BINARY incorrectly set | ||||
| | * | Fixed #65225: PHP_BINARY incorrectly set | Patrick Allaert | 2013-08-18 | 1 | -1/+6 |
| | | | |||||
* | | | fix build - PRIu64 vs %I64u | Anatol Belski | 2013-09-17 | 1 | -0/+4 |
| | | | |||||
* | | | Merge branch 'slim-postdata-merge' | Michael Wallner | 2013-09-17 | 2 | -36/+44 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * slim-postdata-merge: remove unused code tests make reading php://input JIT if enable_post_data_reading=0 revert stream cast fix ZTS build slim post data Conflicts: ext/soap/soap.c ext/standard/php_fopen_wrapper.c main/SAPI.c | ||||
| * | | | make reading php://input JIT if enable_post_data_reading=0 | Michael Wallner | 2013-09-10 | 2 | -36/+43 |
| | | | | |||||
| * | | | revert stream cast | Michael Wallner | 2013-09-10 | 1 | -1/+1 |
| | | | | |||||
| * | | | slim post data | Michael Wallner | 2013-08-27 | 7 | -96/+143 |
| | | | | |||||
* | | | | Merge branch 'slim-postdata' | Michael Wallner | 2013-09-17 | 7 | -96/+143 |
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * slim-postdata: slim post data add NEWS entry; add simple test more precise condition make this work in vc11 too Use int64_t and atoll() after discussion with johannes ws Patch for https://bugs.php.net/bug.php?id=44522 to allow uploading files above 2G. | ||||
| * | | | slim post data | Michael Wallner | 2013-08-27 | 7 | -96/+143 |
| | | | | |||||
* | | | | Merge branch 'pull-request/381' | Stanislav Malyshev | 2013-08-18 | 1 | -1/+6 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | * pull-request/381: Fixed #65225: PHP_BINARY incorrectly set | ||||
| * | | | | Fixed #65225: PHP_BINARY incorrectly set | Patrick Allaert | 2013-07-09 | 1 | -1/+6 |
| | | | | |