Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Set versionsphp-7.0.23PHP-7.0.23 | Anatol Belski | 2017-08-29 | 3 | -4/+4 |
| | |||||
* | Made test 32/64-bit independent | Dmitry Stogov | 2017-08-15 | 1 | -2/+2 |
| | | | | (cherry picked from commit 3bc12268041bdeec9941c99f08b71620f7572eb0) | ||||
* | set versionsphp-7.0.23RC1 | Anatol Belski | 2017-08-15 | 3 | -4/+4 |
| | |||||
* | Fixed bug #75075 (unpack with X* causes infinity loop) | Xinchen Hui | 2017-08-15 | 3 | -0/+15 |
| | |||||
* | Merge branch 'syncoci8' into PHP-7.0 | Tianfang Yang | 2017-08-14 | 1 | -2/+8 |
|\ | |||||
| * | Prepare for PECL release | Tianfang Yang | 2017-08-14 | 1 | -2/+8 |
|/ | |||||
* | Test cleanup improvements, files might be locked in the test process | Anatol Belski | 2017-08-14 | 4 | -6/+21 |
| | |||||
* | fix test cleanup | Anatol Belski | 2017-08-14 | 1 | -2/+6 |
| | |||||
* | Sync OCI8 on PHP 7.x branches | Tianfang Yang | 2017-08-13 | 10 | -108/+116 |
| | |||||
* | Fixed bug #73793 (WDDX uses wrong decimal seperator) | Christoph M. Becker | 2017-08-13 | 3 | -1/+26 |
| | | | | | | | | | The WDDX specification[1] requires to serialize floats with a decimal point, but `snprintf()` is locale-dependent and may use a decimal comma. We fix that afterwards by replacing an eventual comma with a point. [1] <http://xml.coverpages.org/wddx0090-dtd-19980928.txt> | ||||
* | Skip this test if ext/session is not available | Christoph M. Becker | 2017-08-13 | 1 | -0/+1 |
| | |||||
* | Fixed bug #74103 and bug #75054 | Nikita Popov | 2017-08-12 | 5 | -508/+537 |
| | | | | | | | | | | | | | | | | Directly fail unserialization when trying to acquire an r/R reference to an UNDEF HT slot. Previously this left an UNDEF and later deleted the index/key from the HT. What actually caused the issue here is a combination of two factors: First, the key deletion was performed using the hash API, rather than the symtable API, such that the element was not actually removed if it used an integral string key. Second, a subsequent deletion operation, while collecting trailing UNDEF ranges, would mark the element as available for reuse (leaving a corrupted HT state with nNumOfElemnts > nNumUsed). Fix this by failing early and dropping the deletion code. | ||||
* | Fix bug #74725 (html_errors=1 breaks unhandled exceptions) | Andrea Faulds | 2017-08-12 | 3 | -4/+21 |
| | |||||
* | Fixed bug #75049 (spl_autoload_unregister can't handle ↵ | Xinchen Hui | 2017-08-09 | 3 | -4/+34 |
| | | | | spl_autoload_functions results) | ||||
* | Remove mistakingly added line | Anatol Belski | 2017-08-08 | 1 | -1/+0 |
| | |||||
* | Sync makefile options for phpize | Anatol Belski | 2017-08-08 | 1 | -1/+13 |
| | | | | | - run target - debugger mode | ||||
* | JSON: fix config.w32 / Install headers on windows | Darek Slusarczyk | 2017-08-08 | 2 | -1/+2 |
| | |||||
* | Unify EOL | Anatol Belski | 2017-08-07 | 1 | -40/+40 |
| | |||||
* | fix test target for phpize | Anatol Belski | 2017-08-07 | 1 | -1/+1 |
| | |||||
* | use AC_DEFINE + win32 | Remi Collet | 2017-08-04 | 2 | -1/+3 |
| | |||||
* | Increase expected timing on Travis | Anatol Belski | 2017-08-03 | 1 | -1/+1 |
| | | | | | If 5ms to read/write 8 bytes still has issue, probably next this test should skip on Travis to avoid false positive fails. | ||||
* | update NEWS | Anatol Belski | 2017-08-02 | 1 | -0/+3 |
| | |||||
* | Bug #74975: Different serialization for classes | Andreas Treichel | 2017-08-02 | 3 | -2/+62 |
| | |||||
* | Merge remote-tracking branch 'php-src/PHP-7.0' into PHP-7.0 | Nikita Popov | 2017-08-02 | 2 | -64/+11 |
|\ | |||||
| * | take care of compile warnings. | George Wang | 2017-08-02 | 2 | -64/+11 |
| | | |||||
* | | Fix Bug #75001: Wrong reflection on mb_eregi_replace | Fabien Villepinte | 2017-08-02 | 2 | -0/+3 |
| | | |||||
* | | Fix test transliterator_create_inverse_basic.phpt | Fabien Villepinte | 2017-08-02 | 1 | -1/+3 |
|/ | |||||
* | Fixed bug #75002 Null Pointer Dereference in timelib_time_clone | Derick Rethans | 2017-08-02 | 2 | -0/+26 |
| | |||||
* | fix build with old system libsqlite (sqlite3_errstr may be missing) | Remi Collet | 2017-08-02 | 2 | -1/+8 |
| | |||||
* | fixed #endif comments | clwu | 2017-08-02 | 1 | -1/+1 |
| | |||||
* | Updated NEWS | Julien Pauli | 2017-08-01 | 1 | -0/+1 |
| | |||||
* | Fix #75015. Crash in SPL destructors | Julien Pauli | 2017-08-01 | 1 | -0/+1 |
| | |||||
* | Test to cover the change in ce1a0d97 | Anatol Belski | 2017-08-01 | 1 | -0/+14 |
| | |||||
* | Shrink another large image | Christoph M. Becker | 2017-07-30 | 2 | -3/+3 |
| | | | | | | This image is only used for testing `BITMAPV5HEADER` support in `getimagesize()` (see bf9ad4e). Therefore it is not necessary to have a big image; a single pixel is sufficient. | ||||
* | Shrink test image | Christoph M. Becker | 2017-07-30 | 1 | -0/+0 |
| | | | | | | | | The last (`IDAT`) chunk in this file starting at `0x5e265` reports to have a length of `0x2000` bytes, but there are only `0x1D9B` bytes left. Simply cutting the first `IDAT` chunk which starts at `0x31` and also reports a length of `0x2000` at the same offset should produce the same test results (while reducing the file size to 7.628 bytes). | ||||
* | Skip this test if ext/gd is not available | Christoph M. Becker | 2017-07-30 | 1 | -0/+4 |
| | |||||
* | Fixed bug #62934 | Nikita Popov | 2017-07-28 | 3 | -2/+14 |
| | |||||
* | relax test on travis | Anatol Belski | 2017-07-28 | 1 | -12/+13 |
| | |||||
* | Simpler fix for #74974 | Pedro Magalhães | 2017-07-27 | 2 | -21/+1 |
| | |||||
* | Fixed test | Xinchen Hui | 2017-07-27 | 1 | -1/+1 |
| | |||||
* | Fixed bug #74949 (null pointer dereference in _function_string) | Xinchen Hui | 2017-07-27 | 3 | -1/+43 |
| | |||||
* | Bugfix #74993 Wrong reflection param into for some intl: lookup_*() methods | Sara Golemon | 2017-07-26 | 3 | -21/+97 |
| | |||||
* | [ci skip] update NEWS | Anatol Belski | 2017-07-26 | 1 | -0/+3 |
| | |||||
* | Fixed bug #74833, SID constant created with wrong module number | Anatol Belski | 2017-07-26 | 2 | -1/+28 |
| | |||||
* | Fix bug #74991 - include_path has a 4096 char (minus "__DIR__:") limit, in ↵ | Benjamin W. Broersma | 2017-07-26 | 3 | -1/+28 |
| | | | | some PHAR cases | ||||
* | Expose oci_unregister_taf_callback() | Christopher Jones | 2017-07-26 | 8 | -23/+70 |
| | |||||
* | Fixed finding CURL on systems with multiarch support | Carsten Brandt | 2017-07-25 | 2 | -3/+23 |
| | | | | | | | | | | | | | | | | | | fixes https://bugs.php.net/bug.php?id=74125 This commit makes the cURL config script aware of debian/ubuntu [multiarch support][1] which installs architecture specific headers in a different location. It checks whether the `dpkg-architecture` script exists and is executeable, if that is the case, the multiarch architecture is detected by calling `dpkg-architecture -qDEB_HOST_MULTIARCH` as documented in [debian multiarch implementation docs][2]: > `/usr/include/<triplet>`: used for arch-varying headers [1]: https://wiki.debian.org/Multiarch [2]: https://wiki.debian.org/Multiarch/Implementation | ||||
* | minor loop optimizations, closes #2633 | Joe Watkins | 2017-07-25 | 3 | -7/+15 |
| | |||||
* | switch to binary sdk 2.0.9 for appveyor | Anatol Belski | 2017-07-24 | 1 | -1/+1 |
| | |||||
* | Update copyright year to 2017 | Peter Kokot | 2017-07-24 | 6 | -11/+11 |
| |