]> granicus.if.org Git - php/log
php
7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Sara Golemon [Wed, 1 Mar 2017 01:17:41 +0000 (17:17 -0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fix potential crash when setting invalid declare value

7 years agoFix potential crash when setting invalid declare value
Sara Golemon [Wed, 22 Feb 2017 21:56:38 +0000 (13:56 -0800)]
Fix potential crash when setting invalid declare value

Using a non-literal expression in a declare value can cause the
compiler to crash trying to turn that AST node into a usable zval.

There was an existing test for such values using 'encoding',
but that didn't crash because it's handled by the lexer
rather than being compiled.

Trying to use a non-literal with ticks reproduces the crash.

7 years agomake test slower again
Remi Collet [Tue, 28 Feb 2017 10:36:24 +0000 (11:36 +0100)]
make test slower again

7 years agoprepare 7.1.4
Joe Watkins [Tue, 28 Feb 2017 09:08:05 +0000 (09:08 +0000)]
prepare 7.1.4

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Tue, 28 Feb 2017 08:47:56 +0000 (09:47 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  prepare next

7 years agoprepare next
Anatol Belski [Tue, 28 Feb 2017 08:46:11 +0000 (09:46 +0100)]
prepare next

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 27 Feb 2017 19:21:37 +0000 (19:21 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Revert "fix crash in phpdbg shutdown process when opcache is loaded"

7 years agoRevert "fix crash in phpdbg shutdown process when opcache is loaded"
Joe Watkins [Mon, 27 Feb 2017 19:21:10 +0000 (19:21 +0000)]
Revert "fix crash in phpdbg shutdown process when opcache is loaded"

This reverts commit 008fb28eafa3740b1e3696b1a5cf7566d493b97d.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Mon, 27 Feb 2017 17:55:14 +0000 (17:55 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  fix crash in phpdbg shutdown process when opcache is loaded

7 years agofix crash in phpdbg shutdown process when opcache is loaded
Joe Watkins [Mon, 27 Feb 2017 17:54:48 +0000 (17:54 +0000)]
fix crash in phpdbg shutdown process when opcache is loaded

7 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Xinchen Hui [Sun, 26 Feb 2017 04:06:29 +0000 (12:06 +0800)]
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1

* 'PHP-7.1' of git.php.net:/php-src:
  Improve fix for bug #73807

7 years agoFixed bug #74157 (Segfault with nested generators)
Xinchen Hui [Sun, 26 Feb 2017 04:05:56 +0000 (12:05 +0800)]
Fixed bug #74157 (Segfault with nested generators)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sat, 25 Feb 2017 11:57:53 +0000 (12:57 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoImprove fix for bug #73807
Nikita Popov [Sat, 25 Feb 2017 11:55:14 +0000 (12:55 +0100)]
Improve fix for bug #73807

At least on some architectures memmove() on FreeBSD does not
short-curcuit if src==dst. Check for it explicitly to avoid
quadratic copying.

7 years agoFixed bug #74164 (PHP hangs when an invalid value is dynamically passed to typehinted...
Xinchen Hui [Sat, 25 Feb 2017 04:00:42 +0000 (12:00 +0800)]
Fixed bug #74164 (PHP hangs when an invalid value is dynamically passed to typehinted by-ref arg)

7 years agoMerge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
Xinchen Hui [Sat, 25 Feb 2017 03:10:37 +0000 (11:10 +0800)]
Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1

* 'PHP-7.1' of git.php.net:/php-src:
  Fix bug #73127
  Support run or test target invoked within debugger
  Update test for bug #74159
  Update NEWS
  Fix bug #74159

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Fri, 24 Feb 2017 22:22:24 +0000 (23:22 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoFix bug #73127
Grundik [Sat, 18 Feb 2017 02:53:13 +0000 (05:53 +0300)]
Fix bug #73127

gost-crypto hash was incorrect if input data contained long 0xFF
sequence, due to a carry-propagation bug.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Fri, 24 Feb 2017 18:41:30 +0000 (19:41 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Support run or test target invoked within debugger

7 years agoSupport run or test target invoked within debugger
Anatol Belski [Fri, 24 Feb 2017 18:37:16 +0000 (19:37 +0100)]
Support run or test target invoked within debugger

Useful, as it gets all the environment produced by the makefile. For the
test target, it might make sense to have the child process debug plugin
for VS installed.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Aaron Piotrowski [Fri, 24 Feb 2017 04:56:04 +0000 (22:56 -0600)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoUpdate test for bug #74159
Aaron Piotrowski [Fri, 24 Feb 2017 04:24:59 +0000 (22:24 -0600)]
Update test for bug #74159

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Aaron Piotrowski [Fri, 24 Feb 2017 03:18:09 +0000 (21:18 -0600)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoUpdate NEWS
Aaron Piotrowski [Fri, 24 Feb 2017 03:10:14 +0000 (21:10 -0600)]
Update NEWS

7 years agoFix bug #74159
Aaron Piotrowski [Fri, 24 Feb 2017 02:58:12 +0000 (20:58 -0600)]
Fix bug #74159

Thanks to @brzuchal for the patch to xp_ssl.c and @DaveRandom for helping debug the problem.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Thu, 23 Feb 2017 05:58:51 +0000 (13:58 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed typo (it should be typo)

7 years agoFixed typo (it should be typo)
Xinchen Hui [Thu, 23 Feb 2017 05:58:08 +0000 (13:58 +0800)]
Fixed typo (it should be typo)

7 years agoAdd test only (bug doesn't exists in 7.1)
Xinchen Hui [Thu, 23 Feb 2017 04:47:15 +0000 (12:47 +0800)]
Add test only (bug doesn't exists in 7.1)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Thu, 23 Feb 2017 04:47:04 +0000 (12:47 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #74152 (if statement says true to a null variable)

7 years agoFixed bug #74152 (if statement says true to a null variable)
Xinchen Hui [Thu, 23 Feb 2017 04:33:17 +0000 (12:33 +0800)]
Fixed bug #74152 (if statement says true to a null variable)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Thu, 23 Feb 2017 03:02:37 +0000 (11:02 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #74148 (ReflectionFunction incorrectly reports the number of arguments)

7 years agoFixed bug #74148 (ReflectionFunction incorrectly reports the number of arguments)
Xinchen Hui [Thu, 23 Feb 2017 03:02:23 +0000 (11:02 +0800)]
Fixed bug #74148 (ReflectionFunction incorrectly reports the number of arguments)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Remi Collet [Wed, 22 Feb 2017 07:40:22 +0000 (08:40 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  report about OpenSSL 1.1 not supported during configure

7 years agoreport about OpenSSL 1.1 not supported during configure
Remi Collet [Tue, 21 Feb 2017 15:27:51 +0000 (16:27 +0100)]
report about OpenSSL 1.1 not supported during configure

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Joe Watkins [Wed, 22 Feb 2017 06:48:48 +0000 (06:48 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  pull-request/2393:
    stop fpm make install clobbering dot d configuration

7 years agopull-request/2393:
Coenraad Loubser [Tue, 21 Feb 2017 02:02:22 +0000 (04:02 +0200)]
pull-request/2393:

    stop make install from clobbering default dot d configuration

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Dmitry Stogov [Tue, 21 Feb 2017 07:48:21 +0000 (10:48 +0300)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  too many dashes

7 years agotoo many dashes
Dmitry Stogov [Tue, 21 Feb 2017 07:47:48 +0000 (10:47 +0300)]
too many dashes

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Dmitry Stogov [Tue, 21 Feb 2017 07:42:42 +0000 (10:42 +0300)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Increase WSDL cache version (7.0 wsdl cache is incomatible with PHP-5) Include WSDL cache version number into file name

7 years agoIncrease WSDL cache version (7.0 wsdl cache is incomatible with PHP-5)
Dmitry Stogov [Tue, 21 Feb 2017 07:41:20 +0000 (10:41 +0300)]
Increase WSDL cache version (7.0 wsdl cache is incomatible with PHP-5)
Include WSDL cache version number into file name

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Remi Collet [Sun, 19 Feb 2017 16:02:16 +0000 (17:02 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  fix test for libzip 1.2.0

7 years agofix test for libzip 1.2.0
Remi Collet [Sun, 19 Feb 2017 16:02:00 +0000 (17:02 +0100)]
fix test for libzip 1.2.0

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Sat, 18 Feb 2017 17:03:55 +0000 (18:03 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  initialize valid_symbol_table, important for the main thread

7 years agoinitialize valid_symbol_table, important for the main thread
Anatol Belski [Sat, 18 Feb 2017 16:58:17 +0000 (17:58 +0100)]
initialize valid_symbol_table, important for the main thread

to prevent php_errormsg population on invalid symlol_table

7 years agoFixed #74099 - Memory leak with openssl_encrypt()
andrewnester [Fri, 17 Feb 2017 09:33:35 +0000 (12:33 +0300)]
Fixed #74099 - Memory leak with openssl_encrypt()

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Fri, 17 Feb 2017 17:43:50 +0000 (18:43 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoFixed bug #74105
Benjamin Robin [Wed, 15 Feb 2017 23:06:46 +0000 (00:06 +0100)]
Fixed bug #74105

If getrandom syscall is unavailable (ENOSYS), try to fallback on
/dev/urandom.

7 years agoUnused var
Xinchen Hui [Fri, 17 Feb 2017 04:22:59 +0000 (12:22 +0800)]
Unused var

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 16 Feb 2017 16:35:52 +0000 (17:35 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoDisable RTLD_DEEPBIND when compiling with AddressSanitizer (-fsanitize=address).
Ondřej Surý [Thu, 16 Feb 2017 07:57:30 +0000 (08:57 +0100)]
Disable RTLD_DEEPBIND when compiling with AddressSanitizer (-fsanitize=address).

The AddressSanitizer doesn't support RTLD_DEEPBIND resulting in
erratic errors when deinitializing phar module and possibly others.

Clang use __has_feature() macro to indicate compilation with
AddressSanitizer while gcc uses __SANITIZE_ADDRESS__ define.

Fixes bug #73677.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 16 Feb 2017 16:28:05 +0000 (17:28 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoFix memory errors in url rewriter
Nikita Popov [Thu, 16 Feb 2017 16:24:07 +0000 (17:24 +0100)]
Fix memory errors in url rewriter

Strings aren't terminated here...

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 16 Feb 2017 16:00:21 +0000 (17:00 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoFix autoload_func_info destruction
Nikita Popov [Thu, 16 Feb 2017 15:59:17 +0000 (16:59 +0100)]
Fix autoload_func_info destruction

Can't reference the function ptr after the closure has been
destroyed.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Thu, 16 Feb 2017 11:47:12 +0000 (12:47 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

7 years agoMake the ftp and stream tests more reliable.
Mitch Hagstrand [Thu, 16 Feb 2017 09:19:47 +0000 (01:19 -0800)]
Make the ftp and stream tests more reliable.

The tests can sometimes fail because it chooses a passive port for ftp that
is already in use. This makes the test attempt multiple times to find a free
port.

7 years agoAdd json dep to test
Nikita Popov [Thu, 16 Feb 2017 11:45:15 +0000 (12:45 +0100)]
Add json dep to test

7 years ago[ci skip] update NEWS
Anatol Belski [Wed, 15 Feb 2017 15:35:49 +0000 (16:35 +0100)]
[ci skip] update NEWS

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Wed, 15 Feb 2017 15:35:11 +0000 (16:35 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  [ci skip] update NEWS

7 years ago[ci skip] update NEWS
Anatol Belski [Wed, 15 Feb 2017 15:33:49 +0000 (16:33 +0100)]
[ci skip] update NEWS

7 years agoskip test
Anatol Belski [Wed, 15 Feb 2017 15:12:34 +0000 (16:12 +0100)]
skip test

The code path not available on Windows.

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Wed, 15 Feb 2017 13:49:58 +0000 (14:49 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #74090 stream_get_contents maxlength>-1 returns empty string

7 years agoFixed bug #74090 stream_get_contents maxlength>-1 returns empty string
Anatol Belski [Wed, 15 Feb 2017 10:22:47 +0000 (11:22 +0100)]
Fixed bug #74090 stream_get_contents maxlength>-1 returns empty string

7 years agoFixed test in travis
Xinchen Hui [Wed, 15 Feb 2017 09:31:27 +0000 (17:31 +0800)]
Fixed test in travis

7 years agoMake it slower
Xinchen Hui [Wed, 15 Feb 2017 07:27:21 +0000 (15:27 +0800)]
Make it slower

7 years agoFixed test
Xinchen Hui [Wed, 15 Feb 2017 06:49:02 +0000 (14:49 +0800)]
Fixed test

7 years agoAdd a test for hard_timeout(bug #74093)
Xinchen Hui [Wed, 15 Feb 2017 05:51:45 +0000 (13:51 +0800)]
Add a test for hard_timeout(bug #74093)

7 years agoWorkaround to fix bug #74093 (Maximum execution time of n+2 seconds exceed not writte...
Xinchen Hui [Wed, 15 Feb 2017 04:27:56 +0000 (12:27 +0800)]
Workaround to fix bug #74093 (Maximum execution time of n+2 seconds exceed not written in error_log)

Use a different exit code for hard_timeout, 124 is used by linux
timeout:http://man7.org/linux/man-pages/man1/timeout.1.html
"If the command times out, and --preserve-status is not set, then exit with status 124"

8 years agoUpdate NEWS
Xinchen Hui [Mon, 13 Feb 2017 11:17:51 +0000 (19:17 +0800)]
Update NEWS

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Mon, 13 Feb 2017 11:17:09 +0000 (19:17 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug  #73989 (PHP 7.1 Segfaults within Symfony test suite)

8 years agoFixed bug #73989 (PHP 7.1 Segfaults within Symfony test suite)
Xinchen Hui [Mon, 13 Feb 2017 11:16:17 +0000 (19:16 +0800)]
Fixed bug  #73989 (PHP 7.1 Segfaults within Symfony test suite)

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 12 Feb 2017 21:03:21 +0000 (22:03 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoRevert "Fixed bug #74035"
Nikita Popov [Sun, 12 Feb 2017 21:02:39 +0000 (22:02 +0100)]
Revert "Fixed bug #74035"

This reverts commit 9ffc6ca62f53431a4b32b30cdda8180142f47cdb.

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Derick Rethans [Sun, 12 Feb 2017 20:19:02 +0000 (20:19 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoUpgrade timelib to 2017.01
Derick Rethans [Sun, 12 Feb 2017 20:17:01 +0000 (20:17 +0000)]
Upgrade timelib to 2017.01

This fixes:

- Fixed bug #72719 (Relative datetime format ignores weekday on sundays only).
- Fixed bug #73294 (DateTime wrong when date string is negative).
- Fixed bug #73489 (wrong timestamp when call setTimeZone multi times with UTC
  offset).
- Fixed bug #73858 (first/last day of' flag is not being reset).
- Fixed bug #73942 ($date->modify('Friday this week') doesn't return a Friday
  if $date is a Sunday).
- Fixed bug #74057 (wrong day when using "this week" in strtotime).

8 years agoUpdate NEWS
Xinchen Hui [Sun, 12 Feb 2017 12:36:32 +0000 (20:36 +0800)]
Update NEWS

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Sun, 12 Feb 2017 12:36:18 +0000 (20:36 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #74084 (Out of bound read - zend_mm_alloc_small)

Conflicts:
Zend/zend_operators.c

8 years agoFixed bug #74084 (Out of bound read - zend_mm_alloc_small)
Xinchen Hui [Sun, 12 Feb 2017 12:34:08 +0000 (20:34 +0800)]
Fixed bug #74084 (Out of bound read - zend_mm_alloc_small)

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 12 Feb 2017 11:50:14 +0000 (12:50 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #74021
andrewnester [Wed, 1 Feb 2017 10:43:55 +0000 (13:43 +0300)]
Fixed bug #74021

8 years agoUpdate NEWS
Xinchen Hui [Sun, 12 Feb 2017 10:56:36 +0000 (18:56 +0800)]
Update NEWS

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Sun, 12 Feb 2017 10:56:11 +0000 (18:56 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed #73496 (Invalid memory access in zend_inline_hash_func)

8 years agoFixed #73496 (Invalid memory access in zend_inline_hash_func)
Xinchen Hui [Sun, 12 Feb 2017 10:55:19 +0000 (18:55 +0800)]
Fixed #73496 (Invalid memory access in zend_inline_hash_func)

no test script is added because it requre too much memory

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sat, 11 Feb 2017 23:20:06 +0000 (00:20 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agorun-tests: Exit 1 on BORKED tests
Nikita Popov [Sat, 11 Feb 2017 23:19:17 +0000 (00:19 +0100)]
run-tests: Exit 1 on BORKED tests

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sat, 11 Feb 2017 23:15:46 +0000 (00:15 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #73118
Adam Saponara [Sat, 11 Feb 2017 04:58:25 +0000 (23:58 -0500)]
Fixed bug #73118

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sat, 11 Feb 2017 23:06:20 +0000 (00:06 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #69860
Denis Yeldandi [Thu, 9 Feb 2017 07:22:37 +0000 (10:22 +0300)]
Fixed bug #69860

8 years agoadd missing datatype as sync for 5113909
Anatol Belski [Sat, 11 Feb 2017 13:51:15 +0000 (14:51 +0100)]
add missing datatype as sync for 5113909

8 years agoFixed bug #73837 ("new DateTime()" sometimes returns 1 second ago value).
Derick Rethans [Sat, 11 Feb 2017 11:10:01 +0000 (11:10 +0000)]
Fixed bug #73837 ("new DateTime()" sometimes returns 1 second ago value).

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Fri, 10 Feb 2017 16:01:38 +0000 (00:01 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed typo

8 years agoFixed typo
Xinchen Hui [Fri, 10 Feb 2017 16:01:09 +0000 (00:01 +0800)]
Fixed typo

8 years agoUpdate NEWs
Xinchen Hui [Fri, 10 Feb 2017 06:26:18 +0000 (14:26 +0800)]
Update NEWs

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Fri, 10 Feb 2017 06:24:44 +0000 (14:24 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #74019 (Segfault with list)

8 years agoFixed bug #74019 (Segfault with list)
Xinchen Hui [Fri, 10 Feb 2017 06:24:01 +0000 (14:24 +0800)]
Fixed bug #74019 (Segfault with list)

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Wed, 8 Feb 2017 00:10:37 +0000 (01:10 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFixed bug #61471
Zheng SHAO [Wed, 18 Jan 2017 09:50:21 +0000 (18:50 +0900)]
Fixed bug #61471

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Wed, 8 Feb 2017 00:00:46 +0000 (01:00 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoAdd #ifndef restrict
dreamsxin [Tue, 7 Feb 2017 03:36:22 +0000 (11:36 +0800)]
Add #ifndef restrict