]> granicus.if.org Git - php/log
php
5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Wed, 29 Jan 2020 11:50:47 +0000 (12:50 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix use of mb_ereg_search_getregs() after invalid pattern

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Wed, 29 Jan 2020 11:50:40 +0000 (12:50 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix use of mb_ereg_search_getregs() after invalid pattern

5 years agoFix use of mb_ereg_search_getregs() after invalid pattern
Nikita Popov [Wed, 29 Jan 2020 11:49:28 +0000 (12:49 +0100)]
Fix use of mb_ereg_search_getregs() after invalid pattern

This segfaulted because we assumed that if there are matches,
there must be a regular expression as well.

5 years agoFix datatype
Anatol Belski [Wed, 29 Jan 2020 11:34:04 +0000 (12:34 +0100)]
Fix datatype

This has been introduced by 84b0d0fabaaf21ee056984a33b573121296af942.
Besides it causes runtime issues on POWER5 (and presumably later), the
implementation would expect this array to consist on 32-bit integers.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Wed, 29 Jan 2020 11:22:58 +0000 (12:22 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix length inconsistency in mb_convert_encoding

5 years agoFix length inconsistency in mb_convert_encoding
Nikita Popov [Wed, 29 Jan 2020 11:19:28 +0000 (12:19 +0100)]
Fix length inconsistency in mb_convert_encoding

Don't mix strlen() and ZSTR_LEN(). If the encoding contains a
NULL byte, this will overflow the buffer.

NULL bytes will still make this behave oddly because the consuming
code will cut off the string there, but let's address that in master...

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Wed, 29 Jan 2020 10:49:27 +0000 (11:49 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix recovery of large entities in mb_decode_numericentity()

5 years agoFix recovery of large entities in mb_decode_numericentity()
Nikita Popov [Wed, 29 Jan 2020 10:44:56 +0000 (11:44 +0100)]
Fix recovery of large entities in mb_decode_numericentity()

Make sure we don't overflow the integer.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Wed, 29 Jan 2020 10:16:38 +0000 (11:16 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Use "%define parse.error verbose"

5 years agoUse "%define parse.error verbose"
Akim Demaille [Tue, 28 Jan 2020 19:41:56 +0000 (20:41 +0100)]
Use "%define parse.error verbose"

The YYERROR_VERBOSE macro will no longer be supported in Bison 3.6.
It was superseded by the "%error-verbose" directive in Bison 1.875
(2003-01-01).  Bison 2.6 (2012-07-19) clearly announced that support
for YYERROR_VERBOSE would be removed.  Note that since Bison 3.0
(2013-07-25), "%error-verbose" is deprecated in favor of "%define
parse.error verbose".

Closes GH-5125.

5 years agoMerge branch 'PHP-7.4'
Dmitry Stogov [Wed, 29 Jan 2020 09:15:34 +0000 (12:15 +0300)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79092 (Building with clang+lld-9 results in a broken PHP binary)

5 years agoFixed bug #79092 (Building with clang+lld-9 results in a broken PHP binary)
Dmitry Stogov [Wed, 29 Jan 2020 09:15:03 +0000 (12:15 +0300)]
Fixed bug #79092 (Building with clang+lld-9 results in a broken PHP binary)

5 years agoMerge branch 'PHP-7.4'
Máté Kocsis [Tue, 28 Jan 2020 17:51:00 +0000 (18:51 +0100)]
Merge branch 'PHP-7.4'

* Fix #78666 mysqli_options generates Warning on var_dump()

5 years agoFix #78666 mysqli_options generates Warning on var_dump()
Máté Kocsis [Fri, 24 Jan 2020 19:08:32 +0000 (20:08 +0100)]
Fix #78666 mysqli_options generates Warning on var_dump()

Closes GH-5121

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Tue, 28 Jan 2020 16:40:07 +0000 (17:40 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix memory leak in mb_str_split

5 years agoFix memory leak in mb_str_split
Nikita Popov [Tue, 28 Jan 2020 16:39:37 +0000 (17:39 +0100)]
Fix memory leak in mb_str_split

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Tue, 28 Jan 2020 16:17:07 +0000 (17:17 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix mysqli_get_warnings() with multi queries

5 years agoFix mysqli_get_warnings() with multi queries
Nikita Popov [Tue, 28 Jan 2020 16:12:45 +0000 (17:12 +0100)]
Fix mysqli_get_warnings() with multi queries

In this case warning_count may be non-zero, but php_get_warnings()
may still return no warnings. In this case we should return false
rather than returning a corrupted mysqli_warning object.

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Tue, 28 Jan 2020 14:37:51 +0000 (15:37 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix #79174: cookie values with spaces fail to round-trip

5 years agoFix #79174: cookie values with spaces fail to round-trip
Christoph M. Becker [Tue, 28 Jan 2020 14:11:59 +0000 (15:11 +0100)]
Fix #79174: cookie values with spaces fail to round-trip

The fix for bug #78929 disabled the conversion of spaces in cookie
values to plus signs, but failed to adapt `php_setcookie()`
accordingly, so that it uses raw URL encoding as well.

5 years agoAvoid shift UB for large arrays
Nikita Popov [Tue, 28 Jan 2020 14:33:33 +0000 (15:33 +0100)]
Avoid shift UB for large arrays

Don't shift into the sign bit.

5 years agoOnly fetch to_encoding once in mb_convert_encoding()
Nikita Popov [Tue, 28 Jan 2020 14:12:24 +0000 (15:12 +0100)]
Only fetch to_encoding once in mb_convert_encoding()

Instead of doing it on every conversion. This is both more efficient
and avoids generating multiple warnings.

5 years agoMake BG(syslog_device) per request
Nikita Popov [Tue, 28 Jan 2020 13:42:19 +0000 (14:42 +0100)]
Make BG(syslog_device) per request

This is not supposed to be retained across requests. Explicitly
free it at the end of a request, and use the per-request allocator.

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Tue, 28 Jan 2020 12:35:20 +0000 (13:35 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Enable support for LIBZIP_VERSION

5 years agoEnable support for LIBZIP_VERSION
Christoph M. Becker [Tue, 28 Jan 2020 12:30:53 +0000 (13:30 +0100)]
Enable support for LIBZIP_VERSION

This is already supported by non Windows builds for libzip >= 1.3.1,
and since we're using at least libzip 1.4.0 on Windows, we should
support it there as well.

5 years agoFix rel_date leak on DateInterval construction failure
Nikita Popov [Tue, 28 Jan 2020 12:11:49 +0000 (13:11 +0100)]
Fix rel_date leak on DateInterval construction failure

5 years agoThrow an exception if default_dir not set, but required
Nikita Popov [Tue, 28 Jan 2020 11:33:58 +0000 (12:33 +0100)]
Throw an exception if default_dir not set, but required

Previously the RETURN_THROWS() assertion failed for this case.

5 years agozip: fix lib check
Remi Collet [Tue, 28 Jan 2020 10:32:42 +0000 (11:32 +0100)]
zip: fix lib check

5 years agoPerform map ptr base arithmetic through uintptr_t
Nikita Popov [Tue, 28 Jan 2020 10:23:16 +0000 (11:23 +0100)]
Perform map ptr base arithmetic through uintptr_t

Adding an offset to the NULL pointer is undefined behavior.
Avoid this by performing arithmetic on uintptr_t instead.

5 years agoDon't index NULL pointer when fetching non-existent constant
Nikita Popov [Tue, 28 Jan 2020 10:16:53 +0000 (11:16 +0100)]
Don't index NULL pointer when fetching non-existent constant

5 years ago- bump zip extension version to 1.16.0 - add ZipArchive::setMtimeName and ZipArchive...
Remi Collet [Tue, 28 Jan 2020 09:52:09 +0000 (10:52 +0100)]
- bump zip extension version to 1.16.0 - add ZipArchive::setMtimeName and ZipArchive::setMtimeIndex methods

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Tue, 28 Jan 2020 09:44:37 +0000 (10:44 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #78989

5 years agoFixed bug #78989
Nikita Popov [Tue, 28 Jan 2020 09:41:11 +0000 (10:41 +0100)]
Fixed bug #78989

Always operate on copies of the functions, so we don't reference
temporary trait methods that have gone out of scope.

This could be more efficient, but doing an allocated copy only when
strictly necessary turned out to be somewhat tricky.

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Tue, 28 Jan 2020 09:40:00 +0000 (10:40 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix #76584: PharFileInfo::decompress not working

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Tue, 28 Jan 2020 09:32:26 +0000 (10:32 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix #76584: PharFileInfo::decompress not working

5 years agoFix #76584: PharFileInfo::decompress not working
Christoph M. Becker [Sun, 26 Jan 2020 12:33:07 +0000 (13:33 +0100)]
Fix #76584: PharFileInfo::decompress not working

We actually have to decompress, when told to do so.

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Tue, 28 Jan 2020 08:19:45 +0000 (09:19 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix #79172: STRUCT_OFFSET() relies on undefined behavior

5 years agoFix #79172: STRUCT_OFFSET() relies on undefined behavior
Christoph M. Becker [Tue, 28 Jan 2020 08:15:23 +0000 (09:15 +0100)]
Fix #79172: STRUCT_OFFSET() relies on undefined behavior

Since this pattern is understood by compilers, not a real issue, but
certainly cleaner this way.

5 years agoConvert ZEND_ECHO operand to string after sccp
Tyson Andre [Sun, 26 Jan 2020 18:05:34 +0000 (13:05 -0500)]
Convert ZEND_ECHO operand to string after sccp

And filter out echoes of the empty string (e.g. false/null)

Split out of #5097 (on GitHub)

Closes GH-5118

5 years agoConvert some warnings into ValueErrors in the standard file extension
George Peter Banyard [Wed, 11 Dec 2019 20:57:57 +0000 (21:57 +0100)]
Convert some warnings into ValueErrors in the standard file extension

Closes GH-5007

5 years agoMerge branch 'PHP-7.4'
Remi Collet [Mon, 27 Jan 2020 15:48:54 +0000 (16:48 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  - bump zip extension version to 1.15.6 - add ZipArchive::LIBZIP_VERSION - skip bug53885.phpt with libzip 1.6.0 (empty file is no more valid archive)

5 years ago- bump zip extension version to 1.15.6
Remi Collet [Mon, 27 Jan 2020 15:47:28 +0000 (16:47 +0100)]
- bump zip extension version to 1.15.6
- add ZipArchive::LIBZIP_VERSION
- skip bug53885.phpt with libzip 1.6.0 (empty file is no more valid archive)

5 years agoRemove state pointer argument from php_strip_tags
Nikita Popov [Mon, 27 Jan 2020 15:13:36 +0000 (16:13 +0100)]
Remove state pointer argument from php_strip_tags

5 years agoMerge branch 'PHP-7.4'
Máté Kocsis [Mon, 27 Jan 2020 13:04:19 +0000 (14:04 +0100)]
Merge branch 'PHP-7.4'

5 years agoFix #78969 Make PASSWORD_DEFAULT match PASSWORD_BCRYPT instead of being null
Máté Kocsis [Wed, 22 Jan 2020 12:33:11 +0000 (13:33 +0100)]
Fix #78969 Make PASSWORD_DEFAULT match PASSWORD_BCRYPT instead of being null

It was an unintentional BC break.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Mon, 27 Jan 2020 12:32:51 +0000 (13:32 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix bug #78323: Code 0 is returned on invalid options

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Mon, 27 Jan 2020 12:32:29 +0000 (13:32 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix bug #78323: Code 0 is returned on invalid options

5 years agoFix bug #78323: Code 0 is returned on invalid options
Ivan Mikheykin [Fri, 17 Jan 2020 19:26:35 +0000 (22:26 +0300)]
Fix bug #78323: Code 0 is returned on invalid options

Set CLI exit code to 1 when invalid parameters are passed,
and print error to stderr.

5 years ago[skip ci] Fix typos in NEWS
Tyson Andre [Sun, 26 Jan 2020 16:53:42 +0000 (11:53 -0500)]
[skip ci] Fix typos in NEWS

5 years agoFix typo [ci skip]
Markus Staab [Sat, 25 Jan 2020 11:40:22 +0000 (12:40 +0100)]
Fix typo [ci skip]

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Sun, 26 Jan 2020 13:14:52 +0000 (14:14 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Add CURLOPT CURLOPT_HTTP09_ALLOWED available since 7.64.0

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Sun, 26 Jan 2020 13:13:52 +0000 (14:13 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Add CURLOPT CURLOPT_HTTP09_ALLOWED available since 7.64.0

5 years agoAdd CURLOPT CURLOPT_HTTP09_ALLOWED available since 7.64.0
Florian Smeets [Sun, 26 Jan 2020 04:18:57 +0000 (05:18 +0100)]
Add CURLOPT CURLOPT_HTTP09_ALLOWED available since 7.64.0

5 years agoFix bundled PCRE2 compilation on ARM64
Anatol Belski [Sat, 25 Jan 2020 16:44:18 +0000 (17:44 +0100)]
Fix bundled PCRE2 compilation on ARM64

5 years agoUpgrade bundled PCRE2 to 10.34
Anatol Belski [Tue, 21 Jan 2020 19:22:40 +0000 (20:22 +0100)]
Upgrade bundled PCRE2 to 10.34

5 years agoMerge branch 'PHP-7.4'
George Peter Banyard [Sat, 25 Jan 2020 12:31:43 +0000 (13:31 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79080 [ci skip]

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
George Peter Banyard [Sat, 25 Jan 2020 12:31:10 +0000 (13:31 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fixed bug #79080 [ci skip]

5 years agoFixed bug #79080 [ci skip]
George Peter Banyard [Sat, 25 Jan 2020 12:23:51 +0000 (13:23 +0100)]
Fixed bug #79080 [ci skip]

Rewrote session.gc_probability and session.gc_divisor INI setting
description to be more succint.

5 years agoAdd mention about empty needles for strrch() functions in UPGRADING [ci skip]
George Peter Banyard [Sat, 25 Jan 2020 11:32:55 +0000 (12:32 +0100)]
Add mention about empty needles for strrch() functions in UPGRADING [ci skip]

5 years agoAllow empty needle in mb_strrchr()
George Peter Banyard [Sat, 25 Jan 2020 11:22:01 +0000 (12:22 +0100)]
Allow empty needle in mb_strrchr()

5 years agoConvert warnings to ValueError in mb_strpos function family.
George Peter Banyard [Tue, 7 Jan 2020 23:11:37 +0000 (00:11 +0100)]
Convert warnings to ValueError in mb_strpos function family.

Closes GH-5109

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Fri, 24 Jan 2020 15:20:30 +0000 (16:20 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79128

5 years agoFixed bug #79128
Nikita Popov [Fri, 24 Jan 2020 15:18:28 +0000 (16:18 +0100)]
Fixed bug #79128

We need to extend the hash table before performing raw append
operations.

This doesn't matter if preloading happens in the same process,
as the tables will be large enough to hold all entries as a
side-effect of the preloading process. However, if preloading
happens in a different process, we need to reserve space here.

5 years agoFix bug #64865: Use CONTEXT_DOCUMENT_ROOT for scanning dir tree
wbender [Fri, 3 Jan 2020 15:29:12 +0000 (09:29 -0600)]
Fix bug #64865: Use CONTEXT_DOCUMENT_ROOT for scanning dir tree

If CONTEXT_DOCUMENT_ROOT is set use that rather than DOCUMENT_ROOT to
scan up the dir tree looking for .user.ini files.

Closes GH-5051.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Fri, 24 Jan 2020 14:15:36 +0000 (15:15 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix mysqli ssl test for tls1.3

5 years agoFix mysqli ssl test for tls1.3
Nikita Popov [Fri, 24 Jan 2020 14:14:52 +0000 (15:14 +0100)]
Fix mysqli ssl test for tls1.3

Specifying AES256-SHA results in TLS_AES_256_GCM_SHA384 if the
connection uses TLS v1.3.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Fri, 24 Jan 2020 13:55:00 +0000 (14:55 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79011
  Fix memory leaks in mysqlnd debug functionality

5 years agoFixed bug #79011
Nikita Popov [Fri, 24 Jan 2020 13:52:28 +0000 (14:52 +0100)]
Fixed bug #79011

auth_plugin_data_len here is 21, including the trailing null byte.
Directly use SCRAMBLE_LENGTH instead. Also add a sanity check that
the provided scramble is long enough.

5 years agoFix memory leaks in mysqlnd debug functionality
Nikita Popov [Fri, 24 Jan 2020 12:12:11 +0000 (13:12 +0100)]
Fix memory leaks in mysqlnd debug functionality

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Fri, 24 Jan 2020 13:20:59 +0000 (14:20 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Make test independent of online XSD schema
  Yet another check for php_strip_tags_ex()

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Fri, 24 Jan 2020 13:19:17 +0000 (14:19 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Make test independent of online XSD schema
  Yet another check for php_strip_tags_ex()

5 years agoMake test independent of online XSD schema
Christoph M. Becker [Fri, 24 Jan 2020 09:18:01 +0000 (10:18 +0100)]
Make test independent of online XSD schema

The test still needs to access <http://www.w3.org/2009/01/xml.xsd>, but
at least we no longer depend on <http://x-road.eu/xsd/x-road.xsd>,
which may be moved again.

5 years agoMerge branch 'PHP-7.4'
Remi Collet [Fri, 24 Jan 2020 13:06:38 +0000 (14:06 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Add ZipArchive::CM_LZMA2 constant (since libzip 1.6.0)

5 years agoAdd ZipArchive::CM_LZMA2 constant (since libzip 1.6.0)
Remi Collet [Fri, 24 Jan 2020 13:06:19 +0000 (14:06 +0100)]
Add ZipArchive::CM_LZMA2 constant (since libzip 1.6.0)

5 years agoMerge branch 'PHP-7.4'
Christoph M. Becker [Fri, 24 Jan 2020 12:04:26 +0000 (13:04 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Yet another check for php_strip_tags_ex()

5 years agoYet another check for php_strip_tags_ex()
Christoph M. Becker [Fri, 24 Jan 2020 11:45:04 +0000 (12:45 +0100)]
Yet another check for php_strip_tags_ex()

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Christoph M. Becker [Fri, 24 Jan 2020 11:51:02 +0000 (12:51 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Yet another check for php_strip_tags_ex()

5 years agoYet another check for php_strip_tags_ex()
Christoph M. Becker [Fri, 24 Jan 2020 11:45:04 +0000 (12:45 +0100)]
Yet another check for php_strip_tags_ex()

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Fri, 24 Jan 2020 11:28:54 +0000 (12:28 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Don't use CRLF when generating diffs

5 years agoDon't use CRLF when generating diffs
Nikita Popov [Fri, 24 Jan 2020 11:28:37 +0000 (12:28 +0100)]
Don't use CRLF when generating diffs

5 years agoAlso use zend_memnrstr in mbfl_strpos
Nikita Popov [Fri, 24 Jan 2020 10:41:35 +0000 (11:41 +0100)]
Also use zend_memnrstr in mbfl_strpos

5 years agoBase mbfl_strpos on zend_memnstr
Nikita Popov [Fri, 24 Jan 2020 10:29:34 +0000 (11:29 +0100)]
Base mbfl_strpos on zend_memnstr

The same algorithm is also used by zend_memnstr, but it also has
a fast-path for short strings / needles, where a more naive
search performs better.

5 years agoExtract calculation of offset from pointer
Nikita Popov [Fri, 24 Jan 2020 10:15:58 +0000 (11:15 +0100)]
Extract calculation of offset from pointer

5 years agoHandle mb_str(r)ipos offset consistently as well
Nikita Popov [Fri, 24 Jan 2020 09:54:20 +0000 (10:54 +0100)]
Handle mb_str(r)ipos offset consistently as well

5 years agoMove offset error checking into mbfl_strpos
Nikita Popov [Fri, 24 Jan 2020 09:29:34 +0000 (10:29 +0100)]
Move offset error checking into mbfl_strpos

This avoids calculating the full length only in order to validate
the offset, as mbfl_strpos needs to find the offset internally
anyway.

5 years agoAdd #defines for mbfl_strpos error conditions
Nikita Popov [Fri, 24 Jan 2020 09:02:41 +0000 (10:02 +0100)]
Add #defines for mbfl_strpos error conditions

5 years agoAllow variadic arguments to replace non-variadic ones
Nikita Popov [Mon, 6 Jan 2020 11:06:51 +0000 (12:06 +0100)]
Allow variadic arguments to replace non-variadic ones

Any number of arguments can be replaced by a variadic one, so
long as the variadic argument is compatible (in the sense of
contravariance) with the subsumed arguments.

In particular this means that function(...$args) becomes a
near-universal signature: It is compatible with any function
signature that does not accept parameters by-reference.

This also fixes bug #70839, which describes a special case.

Closes GH-5059.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Thu, 23 Jan 2020 14:09:59 +0000 (15:09 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix bug76348.phpt

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Thu, 23 Jan 2020 14:09:54 +0000 (15:09 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fix bug76348.phpt

5 years agoFix bug76348.phpt
Nikita Popov [Thu, 23 Jan 2020 14:08:20 +0000 (15:08 +0100)]
Fix bug76348.phpt

Adjust for URL change in XSD file and mark as online test.

Is it possible for use to store http://x-road.eu/xsd/xroad.xsd
locally instead? Do relative file system paths work here?
I'm not familiar with this.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Thu, 23 Jan 2020 13:58:15 +0000 (14:58 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #78902
  Add unit test for bug #78902

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Thu, 23 Jan 2020 13:58:01 +0000 (14:58 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fixed bug #78902
  Add unit test for bug #78902

5 years agoFixed bug #78902
liudaixiao [Mon, 16 Dec 2019 01:10:28 +0000 (09:10 +0800)]
Fixed bug #78902

5 years agoAdd unit test for bug #78902
Léopold Jacquot [Wed, 4 Dec 2019 14:14:50 +0000 (15:14 +0100)]
Add unit test for bug #78902

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Thu, 23 Jan 2020 13:21:21 +0000 (14:21 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79151

5 years agoMerge branch 'PHP-7.3' into PHP-7.4
Nikita Popov [Thu, 23 Jan 2020 13:21:14 +0000 (14:21 +0100)]
Merge branch 'PHP-7.3' into PHP-7.4

* PHP-7.3:
  Fixed bug #79151

5 years agoFixed bug #79151
Nikita Popov [Thu, 23 Jan 2020 13:19:20 +0000 (14:19 +0100)]
Fixed bug #79151

Make sure we also NULL out next/prev of the removed element on
pop/shift. This only matter is that element is still being referenced
by an iterator.

5 years agoApply custom format/length modifier removal to spprintf
George Peter Banyard [Thu, 23 Jan 2020 11:57:48 +0000 (12:57 +0100)]
Apply custom format/length modifier removal to spprintf

This mimicks the changes made to the custom snprintf implementation
by removing the custom 'v' format and custom 'I' length modifier
from the spprintf implementation.

Closes GH-5108

5 years agoRevert "Merge branch 'PHP-7.4'"
Christoph M. Becker [Thu, 23 Jan 2020 12:12:16 +0000 (13:12 +0100)]
Revert "Merge branch 'PHP-7.4'"

This reverts commit 046dcfb531e242d36a7af2942b9b148290c3c7fe, due to
segfaults on Travis.  This needs to be investigated.

5 years agoMerge branch 'PHP-7.4'
Nikita Popov [Thu, 23 Jan 2020 11:55:28 +0000 (12:55 +0100)]
Merge branch 'PHP-7.4'

* PHP-7.4:
  Fixed bug #79155