summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Correct release date for 7.2.25PHP-7.2.25Sara Golemon2019-11-201-1/+1
|
* Update CREDITS for PHP 7.2.25RC1Sara Golemon2019-11-052-11/+11
|
* Update NEWS for PHP 7.2.25RC1Sara Golemon2019-11-051-1/+1
|
* Fixed bug #78775Nikita Popov2019-11-053-0/+40
| | | | | | Clear the OpenSSL error queue before performing SSL stream operations. As we don't control all code that could possibly be using OpenSSL, we can't rely on the error queue being empty.
* Fix test cases for libxml2 2.9.10Christoph M. Becker2019-10-312-4/+4
| | | | | Since the error reporting has been slightly changed, we have to adapt the two affected test cases.
* Add missing refcount incrementNikita Popov2019-10-301-0/+1
|
* Fixed bug #78689Nikita Popov2019-10-293-1/+23
|
* Merge branch 'PHP-7.1' into PHP-7.2Stanislav Malyshev2019-10-282-4/+4
|\ | | | | | | | | | | | | * PHP-7.1: Fix libmagic buffer overflow issue (CVE-2019-18218) bump version set versions for release
| * Fix libmagic buffer overflow issue (CVE-2019-18218)Stanislav Malyshev2019-10-272-4/+4
| | | | | | | | Ported from https://github.com/file/file/commit/46a8443f76cec4b41ec736eca396984c74664f84
| * bump versionJoe Watkins2019-10-223-6/+10
| |
| * set versions for releasephp-7.1.33Joe Watkins2019-10-223-3/+3
| |
* | Fix #78751: Serialising DatePeriod converts DateTimeImmutableChristoph M. Becker2019-10-283-6/+23
| | | | | | | | | | | | When getting the properties of a DatePeriod instance we have to retain the proper classes, and when restoring a DatePeriod instance we have to cater to DateTimeImmutable instances as well.
* | Fix bug #78752Nikita Popov2019-10-283-8/+38
| | | | | | | | | | | | | | | | | | NULL out the execute_data before destroying it, otherwise GC may trigger while the execute_data is partially destroyed, resulting in double-frees. The handling of call stack unfreezing is a bit awkward because it's a ZEND_API function, so we can't change the signature.
* | Fixed bug #78747Nikita Popov2019-10-254-13/+42
| |
* | Use ICU's CXXFLAGS when using pkg-configRyan Schmidt2019-10-231-1/+2
| | | | | | | | This mirrors how ICU's CXXFLAGS are already used when using icu-config.
* | Add "-pthread" to EXTRA_LDFLAGS_PROGRAM as wellNikita Popov2019-10-231-0/+2
| | | | | | | | | | This is a backport of c518932c0326a938f0fd0254f2adb03b1cddfbca from the PHP 7.4 branch.
* | add NEWS entryRemi Collet2019-10-221-0/+4
| |
* | Merge branch 'PHP-7.1' into PHP-7.2Stanislav Malyshev2019-10-213-4/+72
|\ \ | |/ | | | | | | | | | | * PHP-7.1: Fix bug #78599 (env_path_info underflow can lead to RCE) (CVE-2019-11043) bump versions after release set versions for release
| * Fix bug #78599 (env_path_info underflow can lead to RCE) (CVE-2019-11043)Jakub Zelenka2019-10-204-5/+75
| |
| * bump versions after releaseJoe Watkins2019-08-283-6/+10
| |
| * set versions for releasephp-7.1.32Joe Watkins2019-08-283-4/+12
| |
* | Fix bug #78697: inaccurate error messageFabien Villepinte2019-10-214-31/+49
| |
* | Fix #78694: Appending to a variant array causes segfaultChristoph M. Becker2019-10-193-0/+27
| | | | | | | | | | | | `write_dimension` object handlers have to be able to handle `NULL` `offset`s; for now we simply throw an exception instead of following the `NULL` pointer.
* | Fix #70153 \DateInterval incorrectly unserializedm.yakunin2019-10-186-4/+35
| | | | | | | | | | Added a separate macro for reading 'days' property, so that bool(false) is correctly converted to the proper internal representation.
* | Fix checksum calculation for opcacheMitch Hagstrand2019-10-144-11/+18
| |
* | Fix #78665: Multicasting may leak memoryChristoph M. Becker2019-10-122-0/+9
| |
* | Fix leak in phar openNikita Popov2019-10-102-7/+8
| |
* | Fix leak on static method call on non-existent classNikita Popov2019-10-103-0/+28
| |
* | Avoid float to int cast UB in exifNikita Popov2019-10-091-2/+3
| |
* | Fix #78656: Parse errors classified as highest log-levelErik Lundin2019-10-092-1/+5
| |
* | Remove redundant components < 0 checkNikita Popov2019-10-091-5/+0
| | | | | | | | components is an unsigned number, it cannot be smaller than zero.
* | Add pcre_get_compiled_regex_cache_ex() with local_aware flagSergei Turchanov2019-10-082-2/+11
| | | | | | | | | | | | | | | | | | A new function `pcre_get_compiled_regex_cache_ex()` is introduced, which allows to compile regexp pattern using the "C" locale instead of a current locale. This will be needed to replace setlocale() usage in fileinfo, which is not thread-safe.
* | Add missing SKIPIFs in exif testsFabien Villepinte2019-10-084-0/+24
| |
* | Fix #78642: Wrong libiconv version displayedChristoph M. Becker2019-10-082-1/+4
| | | | | | | | | | The high byte of `_libiconv_version` specifies the major version; the low byte the minor version.
* | next is 7.2.25Remi Collet2019-10-083-5/+8
| |
* | Fix #78641: addGlob can modify given remove_path valueChristoph M. Becker2019-10-083-2/+37
| | | | | | | | | | | | | | `remove_path` points to the given string, so we must not modify it. Instead we use a duplicate, if we need the modification. We may want to switch to `zend_string`s in master.
* | Check for object_init_ex() failure in user filter factoryNikita Popov2019-10-072-3/+25
| |
* | Set session.gc_probability=0 in bug78624.phptNikita Popov2019-10-071-0/+1
| | | | | | | | | | We only want to test manually triggered session GC. Avoid spurious output due to automatic GC.
* | Fix #78623: Regression caused by "SP call yields additional empty result set"Christoph M. Becker2019-10-075-2/+12
| | | | | | | | This reverts commit 41a4379cb45419a376043ca5f8c5a2bca82cea7c.
* | Split intl tests for ICU 65Christoph M. Becker2019-10-044-0/+1559
| |
* | Fix #78620: Out of memory errorChristoph M. Becker2019-10-044-2/+28
| | | | | | | | | | The integer addition in `ZEND_MM_ALIGNED_SIZE_EX` can overflow, what we have to catch early.
* | fix #78624: session_gc return value for user defined session handlersBrent Shaffer2019-10-044-7/+85
| |
* | Fix bug #76809 (SSL settings aren't respected when persistent connection is ↵Fábio Souto2019-10-032-4/+57
| | | | | | | | reused)
* | Fix #76859 stream_get_line skips data if used with data-generating filterKonstantin Kopachev2019-10-035-6/+38
| | | | | | | | | | | | | | | | | | stream_get-line repeatedly calls php_stream_fill_read_buffer until enough data is accumulated in buffer. However, when stream contains filters attached to it, then each call to fill buffer essentially resets buffer read/write pointers and new data is written over old. This causes stream_get_line to skip parts of data from stream This patch fixes such behavior, so fill buffer call will append.
* | Revert "Fix #78620: Out of memory error"Christoph M. Becker2019-10-022-6/+0
| | | | | | | | | | | | This reverts commit 8ce04df7e0108a10f7b782a28204e9384ab1129c. Cf. <https://github.com/php/php-src/pull/4766#discussion_r330658679>.
* | Fix #78620: Out of memory errorChristoph M. Becker2019-10-022-0/+6
| | | | | | | | | | If the integer addition in `ZEND_MM_ALIGNED_SIZE_EX` overflows, the macro evaluates to `0`, what we should catch early.
* | Fix segfault with __COMPILER_HALT_OFFSET__ and trailing {}Nikita Popov2019-10-022-0/+11
| | | | | | | | Fixes OSS-Fuzz #17895.
* | Fixed test that "fails" from time to timeDmitry Stogov2019-10-021-1/+1
| |
* | Fixed test that "fails" from time to timeDmitry Stogov2019-10-021-1/+1
| |
* | Add missing skip keyword in testsFabien Villepinte2019-10-016-6/+6
| |