]> granicus.if.org Git - php/log
php
6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Fri, 11 Jan 2019 09:29:45 +0000 (10:29 +0100)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Nikita Popov [Fri, 11 Jan 2019 09:25:32 +0000 (10:25 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoFix bug #77361 (configure fails on 64-bit AIX when opcache enabled)
Kevin Adler [Thu, 27 Dec 2018 19:54:08 +0000 (13:54 -0600)]
Fix bug #77361 (configure fails on 64-bit AIX when opcache enabled)

In f9048300123, support for GNU Hurd was added to the opcache and
the configure check to ensure the opcache knows the flock struct
layout prior to building was changed check for two cases: BSD layout
and Linux layout. All the existing hard-coded cases in
ZendAccelerator.h follow these two cases, except for 64-bit AIX.
This means that even though building on 64-bit AIX would work,
the configure script refuses to continue.

Add a new configure check for the 64-bit AIX case and a new
compiler definition HAVE_FLOCK_AIX64. Now that all the cases are
covered, simplify the ifdef logic around these three HAVE_FLOCK_*
macros:
- The macOS and the various BSD flavors fall under HAVE_FLOCK_BSD
- Linux, HP-UX, GNU Hurd, 32-bit AIX, and SVR4 environments
  fall under HAVE_FLOCK_LINUX
- 64-bit AIX falls under HAVE_FLOCK_AIX64

The only difference between the existing HAVE_FLOCK_LINUX and
the hard-coded Linux/HP-UX/Hurd case is that the latter
initialized the 5th member to 0, but since the C standard already
says that un-initialized members will be initialized to 0,
it's effectively the same.

6 years agoFix misleading variable type
Christoph M. Becker [Thu, 10 Jan 2019 23:21:44 +0000 (00:21 +0100)]
Fix misleading variable type

We port libgd/libgd@0414bb2da0b27d90b6125bd34a3e2cfb89fd3f42.

6 years agoMerge branch 'PHP-7.3'
Jakub Zelenka [Thu, 10 Jan 2019 20:17:58 +0000 (20:17 +0000)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Jakub Zelenka [Thu, 10 Jan 2019 20:16:06 +0000 (20:16 +0000)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoFix cleaning up after openssl_pkcs7_verify_basic test
Alexander Kurilo [Thu, 6 Dec 2018 21:07:18 +0000 (00:07 +0300)]
Fix cleaning up after openssl_pkcs7_verify_basic test

6 years agoGenerate certs for openssl tests on the fly
Alexander Kurilo [Sun, 2 Dec 2018 14:08:01 +0000 (17:08 +0300)]
Generate certs for openssl tests on the fly

The idea is to create an easy way to provide a certificate that never
expires. In order to make it cross-platform, PHP is used rather than
openssl CLI app. Using openssl to generate certificates for tests that
test openssl might be not the best idea but pros seem to outweight cons
that this "recursice dependency" adds

6 years agoRemove unused variables and functions
Christoph M. Becker [Thu, 10 Jan 2019 17:00:27 +0000 (18:00 +0100)]
Remove unused variables and functions

We remove the unused variables altogether, and port
libgd/libgd@f50c24e467f1f44f0ede90bc7d2d8eaadbe11094 to silence the
compiler warnings.

6 years agoMerge branch 'PHP-7.3'
Christoph M. Becker [Thu, 10 Jan 2019 15:28:43 +0000 (16:28 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix #73281: imagescale(…, IMG_BILINEAR_FIXED) can cause black border

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Christoph M. Becker [Thu, 10 Jan 2019 15:14:56 +0000 (16:14 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Fix #73281: imagescale(…, IMG_BILINEAR_FIXED) can cause black border

6 years agoFix #73281: imagescale(…, IMG_BILINEAR_FIXED) can cause black border
Christoph M. Becker [Thu, 10 Jan 2019 15:11:23 +0000 (16:11 +0100)]
Fix #73281: imagescale(…, IMG_BILINEAR_FIXED) can cause black border

We port the upstream fixes for libgd/libgd#329 and libgd/libgd#224.

6 years agoRemove unnecessary Z_PARAM_ZVAL_DEREFs
Nikita Popov [Thu, 10 Jan 2019 14:35:00 +0000 (15:35 +0100)]
Remove unnecessary Z_PARAM_ZVAL_DEREFs

6 years agoMerge branch 'PHP-7.3'
Christoph M. Becker [Thu, 10 Jan 2019 13:25:53 +0000 (14:25 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix #77272: imagescale() may return image resource on failure

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Christoph M. Becker [Thu, 10 Jan 2019 13:06:49 +0000 (14:06 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Fix #77272: imagescale() may return image resource on failure

6 years agoFix #77272: imagescale() may return image resource on failure
Christoph M. Becker [Thu, 10 Jan 2019 13:03:07 +0000 (14:03 +0100)]
Fix #77272: imagescale() may return image resource on failure

`_gdScaleHoriz()` and `_gdScaleVert()` may fail, but don't signal
failure since they are void functions.  We change that according to
upstream libgd.

We also remove the unused `Scale()` function, which doesn't exist in
upstream libgd either, right away.

6 years agoReturn only debug props in PDORow
Nikita Popov [Thu, 10 Jan 2019 11:36:08 +0000 (12:36 +0100)]
Return only debug props in PDORow

Previously this returned properties of a different object, including
INDIRECTs directly, which violates our invariants. Switch this to
only return properties for debugging purposes, without INDIRECTs.
If someone complains we can extend this to other purposes, as needed.

6 years agoUse serialize_deny handler in PDORow
Nikita Popov [Thu, 10 Jan 2019 11:29:14 +0000 (12:29 +0100)]
Use serialize_deny handler in PDORow

Instead of a custom handler denying serialization, use the standard
one.

6 years agoManually initialize PDORow handlers
Nikita Popov [Thu, 10 Jan 2019 11:28:32 +0000 (12:28 +0100)]
Manually initialize PDORow handlers

Makes it easier to see what is specified and what isn't, and allows
grepping...

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Thu, 10 Jan 2019 09:58:07 +0000 (10:58 +0100)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Nikita Popov [Thu, 10 Jan 2019 09:57:13 +0000 (10:57 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoFixed bug #77439
Nikita Popov [Thu, 10 Jan 2019 09:55:19 +0000 (10:55 +0100)]
Fixed bug #77439

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Thu, 10 Jan 2019 09:27:57 +0000 (10:27 +0100)]
Merge branch 'PHP-7.3'

6 years agoFixed bug #77434
Nikita Popov [Thu, 10 Jan 2019 09:25:55 +0000 (10:25 +0100)]
Fixed bug #77434

Mark arrays containing partial arrays as partial. This was already
done for the ADD_ARRAY_ELEMENT case, but not for ASSIGN_DIM.

6 years agoMerge branch 'PHP-7.3'
Xinchen Hui [Thu, 10 Jan 2019 06:53:36 +0000 (14:53 +0800)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Incase of invalid read

6 years agoIncase of invalid read
Xinchen Hui [Thu, 10 Jan 2019 06:50:39 +0000 (14:50 +0800)]
Incase of invalid read

6 years agoRequire that write_property value is not a reference
Nikita Popov [Wed, 9 Jan 2019 16:09:48 +0000 (17:09 +0100)]
Require that write_property value is not a reference

We explicitly dereference values before claling write_property,
so no need to do duplicate work.

6 years agoMerge branch 'PHP-7.3'
Anatol Belski [Wed, 9 Jan 2019 15:17:11 +0000 (16:17 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Revert visibility

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Anatol Belski [Wed, 9 Jan 2019 15:16:47 +0000 (16:16 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Revert visibility

6 years agoRevert visibility
Andrey Hristov [Fri, 4 Jan 2019 09:37:54 +0000 (11:37 +0200)]
Revert visibility

(cherry picked from commit 71ffae9605a0b19f4c7a76d317276c934a767a65)

6 years agoUpdate oniguruma.patch wrt. latest security fixes
Christoph M. Becker [Wed, 9 Jan 2019 11:26:38 +0000 (12:26 +0100)]
Update oniguruma.patch wrt. latest security fixes

6 years agoMerge branch 'PHP-7.3'
Christoph M. Becker [Wed, 9 Jan 2019 10:47:39 +0000 (11:47 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Sync NEWS with 7.3.1

6 years agoSync NEWS with 7.3.1
Christoph M. Becker [Wed, 9 Jan 2019 10:46:48 +0000 (11:46 +0100)]
Sync NEWS with 7.3.1

All these bugs are fixed in PHP-7.3.1 already.

6 years agoFix some sign-related issues in comparisons
jvoisin [Tue, 8 Jan 2019 21:08:40 +0000 (22:08 +0100)]
Fix some sign-related issues in comparisons

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Wed, 9 Jan 2019 08:51:28 +0000 (09:51 +0100)]
Merge branch 'PHP-7.3'

6 years agoFixed bug #77289
Lauri Kenttä [Wed, 9 Jan 2019 08:50:26 +0000 (09:50 +0100)]
Fixed bug #77289

Use mysqlnd_restart_psession and mysqlnd_end_psession in PDO MySQL.
This makes sure we free last_message while ZMM is still live.

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Wed, 9 Jan 2019 08:28:04 +0000 (09:28 +0100)]
Merge branch 'PHP-7.3'

6 years agoMake operator swapping depend on IGNORE_OVERLOADING flag
Nikita Popov [Wed, 9 Jan 2019 08:26:49 +0000 (09:26 +0100)]
Make operator swapping depend on IGNORE_OVERLOADING flag

Add MUL back to the list and instead make the entire optimization
depend on IGNORE_OVERLOADING, which is there exactly so we can make
these kinds of assumptions.

6 years agoMerge branch 'PHP-7.3'
Sara Golemon [Tue, 8 Jan 2019 19:20:30 +0000 (14:20 -0500)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Bump for 7.1.27

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Sara Golemon [Tue, 8 Jan 2019 19:20:18 +0000 (14:20 -0500)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Bump for 7.1.27

6 years agoMerge branch 'PHP-7.1' into PHP-7.2
Sara Golemon [Tue, 8 Jan 2019 19:19:37 +0000 (14:19 -0500)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Bump for 7.1.27

6 years agoBump for 7.1.27
Sara Golemon [Tue, 8 Jan 2019 19:17:43 +0000 (14:17 -0500)]
Bump for 7.1.27

6 years agoMerge branch 'PHP-7.3'
Christoph M. Becker [Tue, 8 Jan 2019 16:24:35 +0000 (17:24 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Sync NEWS with 7.3.1

6 years agoSync NEWS with 7.3.1
Christoph M. Becker [Tue, 8 Jan 2019 16:23:30 +0000 (17:23 +0100)]
Sync NEWS with 7.3.1

All these bugs are fixed in PHP-7.3.1 already.

6 years agoMerge branch 'PHP-7.3'
Xinchen Hui [Tue, 8 Jan 2019 11:19:44 +0000 (19:19 +0800)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fixed bug #77266 (Assertion failed in dce_live_ranges)

6 years agoFixed bug #77266 (Assertion failed in dce_live_ranges)
Xinchen Hui [Tue, 8 Jan 2019 11:17:46 +0000 (19:17 +0800)]
Fixed bug #77266 (Assertion failed in dce_live_ranges)

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Tue, 8 Jan 2019 09:21:54 +0000 (10:21 +0100)]
Merge branch 'PHP-7.3'

6 years agoFixed bug #77428
Nikita Popov [Tue, 8 Jan 2019 09:21:01 +0000 (10:21 +0100)]
Fixed bug #77428

mb_ereg_replace historically has not supported escaping backslashes
with backslashes. Go back to that behavior for BC reasons.

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Tue, 8 Jan 2019 08:38:11 +0000 (09:38 +0100)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Nikita Popov [Tue, 8 Jan 2019 08:38:02 +0000 (09:38 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoDon't swap operands of ZEND_MUL
Nikita Popov [Tue, 8 Jan 2019 08:36:48 +0000 (09:36 +0100)]
Don't swap operands of ZEND_MUL

If this is used with operator overloading, then the operation does
not necessarily commute (for example, matrix multiplication).

6 years agoMerge branch 'PHP-7.3'
Remi Collet [Tue, 8 Jan 2019 08:34:24 +0000 (09:34 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  cleanup merge

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Remi Collet [Tue, 8 Jan 2019 08:34:05 +0000 (09:34 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  cleanup merge

6 years agocleanup merge
Remi Collet [Tue, 8 Jan 2019 08:33:41 +0000 (09:33 +0100)]
cleanup merge

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Tue, 8 Jan 2019 08:26:44 +0000 (09:26 +0100)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Nikita Popov [Tue, 8 Jan 2019 08:26:31 +0000 (09:26 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoPrefix error_code with underscore in FastZPP implementation
twosee [Tue, 8 Jan 2019 08:24:51 +0000 (09:24 +0100)]
Prefix error_code with underscore in FastZPP implementation

To avoid conflicts with parameter names.

6 years agoConst changes
Andrey Hristov [Mon, 7 Jan 2019 18:16:33 +0000 (20:16 +0200)]
Const changes

6 years agoSimplify the command factory
Andrey Hristov [Mon, 7 Jan 2019 16:45:33 +0000 (18:45 +0200)]
Simplify the command factory

Since more than an year it not possible to create commands in the heap
but they are allocated on the stack and directly run. In this regard, it
doesn't make sense to have all the vararg stuff. Commands made sense
to be created and pushed onto a stack then a general executor will
run thru the stack and execute/handle the commands.

6 years agoRemove unnecessary uses of object_and_properties_init
Nikita Popov [Mon, 7 Jan 2019 15:00:01 +0000 (16:00 +0100)]
Remove unnecessary uses of object_and_properties_init

Use object_init_ex instead if the properties are NULL.

6 years agoMark const what should not be changed
Andrey Hristov [Mon, 7 Jan 2019 13:06:57 +0000 (15:06 +0200)]
Mark const what should not be changed

6 years agoMerge branch 'PHP-7.3'
Derick Rethans [Mon, 7 Jan 2019 12:49:01 +0000 (12:49 +0000)]
Merge branch 'PHP-7.3'

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Derick Rethans [Mon, 7 Jan 2019 12:48:49 +0000 (12:48 +0000)]
Merge branch 'PHP-7.2' into PHP-7.3

6 years agoUpdate tests due to data changes in tzdata 2018i
Derick Rethans [Mon, 7 Jan 2019 12:48:42 +0000 (12:48 +0000)]
Update tests due to data changes in tzdata 2018i

6 years agoMerge branch 'PHP-7.3'
Christoph M. Becker [Mon, 7 Jan 2019 12:11:31 +0000 (13:11 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix NEWS
  Updated to version 2018.9 (2018i)

6 years agoFix NEWS
Christoph M. Becker [Mon, 7 Jan 2019 12:11:04 +0000 (13:11 +0100)]
Fix NEWS

The fixes for bug #77359 and #77360 have been ported to PHP-7.3.1, and
the release has been postponed by one week.

6 years agoUpdated to version 2018.9 (2018i)
Derick Rethans [Mon, 7 Jan 2019 11:50:17 +0000 (11:50 +0000)]
Updated to version 2018.9 (2018i)

6 years agoEmpty merge
Derick Rethans [Mon, 7 Jan 2019 11:50:17 +0000 (11:50 +0000)]
Empty merge

6 years agoUpdated to version 2018.9 (2018i)
Derick Rethans [Mon, 7 Jan 2019 11:50:16 +0000 (11:50 +0000)]
Updated to version 2018.9 (2018i)

6 years agoEmpty merge
Derick Rethans [Mon, 7 Jan 2019 11:50:16 +0000 (11:50 +0000)]
Empty merge

6 years agoUpdated to version 2018.9 (2018i)
Derick Rethans [Mon, 7 Jan 2019 11:50:14 +0000 (11:50 +0000)]
Updated to version 2018.9 (2018i)

6 years agoMerge branch 'PHP-7.3'
Remi Collet [Mon, 7 Jan 2019 10:12:58 +0000 (11:12 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  [ci skip] fix NEWS

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Remi Collet [Mon, 7 Jan 2019 10:12:46 +0000 (11:12 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  [ci skip] fix NEWS

6 years ago[ci skip] fix NEWS
Remi Collet [Mon, 7 Jan 2019 10:12:13 +0000 (11:12 +0100)]
[ci skip] fix NEWS

6 years agoMerge branch 'PHP-7.3'
Remi Collet [Mon, 7 Jan 2019 10:03:14 +0000 (11:03 +0100)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  [ci skip] fix NEWS

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Remi Collet [Mon, 7 Jan 2019 10:02:58 +0000 (11:02 +0100)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  [ci skip] fix NEWS

6 years ago[ci skip] fix NEWS
Remi Collet [Mon, 7 Jan 2019 10:02:40 +0000 (11:02 +0100)]
[ci skip] fix NEWS

6 years agoMerge branch 'PHP-7.3'
Nikita Popov [Mon, 7 Jan 2019 09:05:33 +0000 (10:05 +0100)]
Merge branch 'PHP-7.3'

6 years agoFix one issue reported in bug #77310
Nikita Popov [Mon, 7 Jan 2019 08:58:59 +0000 (09:58 +0100)]
Fix one issue reported in bug #77310

SCCP did not handle array ASSIGN_* with a BOT operand correctly.

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Stanislav Malyshev [Mon, 7 Jan 2019 09:04:16 +0000 (01:04 -0800)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Still leaking for some reason, XFAIL for now, I'll look into it later.

6 years agoMerge branch 'PHP-7.2'
Stanislav Malyshev [Mon, 7 Jan 2019 09:03:55 +0000 (01:03 -0800)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Still leaking for some reason, XFAIL for now, I'll look into it later.

6 years agoStill leaking for some reason, XFAIL for now, I'll look into it later.
Stanislav Malyshev [Mon, 7 Jan 2019 09:03:04 +0000 (01:03 -0800)]
Still leaking for some reason, XFAIL for now, I'll look into it later.

6 years agoMerge branch 'PHP-7.1' into PHP-7.2
Stanislav Malyshev [Mon, 7 Jan 2019 09:03:26 +0000 (01:03 -0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Still leaking for some reason, XFAIL for now, I'll look into it later.

6 years agoStill leaking for some reason, XFAIL for now, I'll look into it later.
Stanislav Malyshev [Mon, 7 Jan 2019 09:03:04 +0000 (01:03 -0800)]
Still leaking for some reason, XFAIL for now, I'll look into it later.

6 years agoMerge branch 'PHP-7.3'
Stanislav Malyshev [Mon, 7 Jan 2019 07:35:27 +0000 (23:35 -0800)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix bug #77418 - Heap overflow in utf32be_mbc_to_code
  Add NEWS
  [ci skip] Add NEWS
  Fix more issues with encodilng length
  Fix #77270: imagecolormatch Out Of Bounds Write on Heap
  Fix bug #77380  (Global out of bounds read in xmlrpc base64 code)
  Fix bug #77371 (heap buffer overflow in mb regex functions - compile_string_node)
  Fix bug #77370 - check that we do not read past buffer end when parsing multibytes
  Fix #77269: Potential unsigned underflow in gdImageScale
  Fix bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext)
  Fix bug #77242 (heap out of bounds read in xmlrpc_decode())
  Regenerate certs for openssl tests

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Stanislav Malyshev [Mon, 7 Jan 2019 07:34:46 +0000 (23:34 -0800)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Fix bug #77418 - Heap overflow in utf32be_mbc_to_code
  Add NEWS
  [ci skip] Add NEWS
  Fix more issues with encodilng length
  Fix #77270: imagecolormatch Out Of Bounds Write on Heap
  Fix bug #77380  (Global out of bounds read in xmlrpc base64 code)
  Fix bug #77371 (heap buffer overflow in mb regex functions - compile_string_node)
  Fix bug #77370 - check that we do not read past buffer end when parsing multibytes
  Fix #77269: Potential unsigned underflow in gdImageScale
  Fix bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext)
  Fix bug #77242 (heap out of bounds read in xmlrpc_decode())
  Regenerate certs for openssl tests

6 years agoMerge branch 'PHP-7.1' into PHP-7.2
Stanislav Malyshev [Mon, 7 Jan 2019 07:34:02 +0000 (23:34 -0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix bug #77418 - Heap overflow in utf32be_mbc_to_code
  Add NEWS
  [ci skip] Add NEWS
  Fix more issues with encodilng length
  Fix #77270: imagecolormatch Out Of Bounds Write on Heap
  Fix bug #77380  (Global out of bounds read in xmlrpc base64 code)
  Fix bug #77371 (heap buffer overflow in mb regex functions - compile_string_node)
  Fix bug #77370 - check that we do not read past buffer end when parsing multibytes
  Fix #77269: Potential unsigned underflow in gdImageScale
  Fix bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext)
  Fix bug #77242 (heap out of bounds read in xmlrpc_decode())
  Regenerate certs for openssl tests

6 years agoMerge branch 'PHP-5.6' into PHP-7.1
Stanislav Malyshev [Mon, 7 Jan 2019 07:32:36 +0000 (23:32 -0800)]
Merge branch 'PHP-5.6' into PHP-7.1

* PHP-5.6:
  Fix bug #77418 - Heap overflow in utf32be_mbc_to_code
  [ci skip] Add NEWS
  Fix more issues with encodilng length
  Fix #77270: imagecolormatch Out Of Bounds Write on Heap
  Fix bug #77380  (Global out of bounds read in xmlrpc base64 code)
  Fix bug #77371 (heap buffer overflow in mb regex functions - compile_string_node)
  Fix bug #77370 - check that we do not read past buffer end when parsing multibytes
  Fix #77269: Potential unsigned underflow in gdImageScale
  Fix bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext)
  Fix bug #77242 (heap out of bounds read in xmlrpc_decode())
  Regenerate certs for openssl tests

6 years agoFix bug #77418 - Heap overflow in utf32be_mbc_to_code
Stanislav Malyshev [Mon, 7 Jan 2019 07:31:15 +0000 (23:31 -0800)]
Fix bug #77418 - Heap overflow in utf32be_mbc_to_code

6 years agoMerge branch 'PHP-7.3'
Stanislav Malyshev [Sun, 6 Jan 2019 21:50:48 +0000 (13:50 -0800)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix tests - newer versions check Unicode
  Add NEWS
  Add NEWS
  Fix test

6 years agoMerge branch 'PHP-7.2' into PHP-7.3
Stanislav Malyshev [Sun, 6 Jan 2019 21:50:28 +0000 (13:50 -0800)]
Merge branch 'PHP-7.2' into PHP-7.3

* PHP-7.2:
  Fix tests - newer versions check Unicode
  Add NEWS
  Fix test

6 years agoFix tests - newer versions check Unicode
Stanislav Malyshev [Sun, 6 Jan 2019 21:28:30 +0000 (13:28 -0800)]
Fix tests - newer versions check Unicode

6 years agoAdd NEWS
Stanislav Malyshev [Sun, 6 Jan 2019 21:11:55 +0000 (13:11 -0800)]
Add NEWS

6 years agoMerge branch 'PHP-7.1' into PHP-7.2
Stanislav Malyshev [Sun, 6 Jan 2019 21:05:49 +0000 (13:05 -0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Add NEWS

6 years agoAdd NEWS
Stanislav Malyshev [Sun, 6 Jan 2019 21:04:51 +0000 (13:04 -0800)]
Add NEWS

6 years agoAdd NEWS
Stanislav Malyshev [Sun, 6 Jan 2019 21:04:51 +0000 (13:04 -0800)]
Add NEWS

6 years ago[ci skip] Add NEWS
Stanislav Malyshev [Sun, 6 Jan 2019 21:03:38 +0000 (13:03 -0800)]
[ci skip] Add NEWS

6 years agoMerge branch 'PHP-7.1' into PHP-7.2
Stanislav Malyshev [Sun, 6 Jan 2019 20:54:09 +0000 (12:54 -0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix test

6 years agoMerge branch 'PHP-7.3'
Stanislav Malyshev [Sun, 6 Jan 2019 20:50:10 +0000 (12:50 -0800)]
Merge branch 'PHP-7.3'

* PHP-7.3:
  Fix #77367: Negative size parameter in mb_split
  Fix #77369 - memcpy with negative length via crafted DNS response
  Fix more issues with encodilng length
  Fix #77270: imagecolormatch Out Of Bounds Write on Heap
  Fix bug #77380  (Global out of bounds read in xmlrpc base64 code)
  Fix bug #77371 (heap buffer overflow in mb regex functions - compile_string_node)
  Fix bug #77370 - check that we do not read past buffer end when parsing multibytes
  Fix #77269: Potential unsigned underflow in gdImageScale
  Fix bug #77247 (heap buffer overflow in phar_detect_phar_fname_ext)
  Fix bug #77242 (heap out of bounds read in xmlrpc_decode())
  Regenerate certs for openssl tests

6 years agoFix test
Stanislav Malyshev [Sun, 6 Jan 2019 20:30:44 +0000 (12:30 -0800)]
Fix test