]> granicus.if.org Git - php/log
php
7 years agoUse IS_EQUAL instead of CASE when first operand is CV or CONST. Removed CASE handlers...
Dmitry Stogov [Fri, 29 Dec 2017 09:57:58 +0000 (12:57 +0300)]
Use IS_EQUAL instead of CASE when first operand is CV or CONST. Removed CASE handlers that duplicated IS_EQUAL.

7 years agoRemoved useless specialization
Dmitry Stogov [Fri, 29 Dec 2017 09:02:50 +0000 (12:02 +0300)]
Removed useless specialization

7 years agoUse free_obj for intl ResourceBundle
Nikita Popov [Thu, 28 Dec 2017 11:25:01 +0000 (12:25 +0100)]
Use free_obj for intl ResourceBundle

Partial fix for bug #67911, the part about __destruct() not being
called.

7 years agoMerge branch 'PHP-7.2'
Dmitry Stogov [Thu, 28 Dec 2017 11:10:01 +0000 (14:10 +0300)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fixed bug #75720 (File cache not populated after SHM runs full)

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Dmitry Stogov [Thu, 28 Dec 2017 11:08:38 +0000 (14:08 +0300)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed bug #75720 (File cache not populated after SHM runs full)

7 years agoFixed bug #75720 (File cache not populated after SHM runs full)
Dmitry Stogov [Thu, 28 Dec 2017 11:08:12 +0000 (14:08 +0300)]
Fixed bug #75720 (File cache not populated after SHM runs full)

7 years agoMerge branch 'PHP-7.2'
Xinchen Hui [Thu, 28 Dec 2017 08:31:40 +0000 (16:31 +0800)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fixed bug #75742 (potential memleak in internal classes's static members)

7 years agoFixed bug #75742 (potential memleak in internal classes's static members)
Xinchen Hui [Thu, 28 Dec 2017 08:31:09 +0000 (16:31 +0800)]
Fixed bug #75742 (potential memleak in internal classes's static members)

7 years agoMerge branch 'PHP-7.2'
Dmitry Stogov [Thu, 28 Dec 2017 08:20:52 +0000 (11:20 +0300)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fixed reference-counting

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Dmitry Stogov [Thu, 28 Dec 2017 08:20:43 +0000 (11:20 +0300)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed reference-counting

7 years agoFixed reference-counting
Dmitry Stogov [Thu, 28 Dec 2017 08:19:52 +0000 (11:19 +0300)]
Fixed reference-counting

7 years agozend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized...
Dmitry Stogov [Wed, 27 Dec 2017 13:02:20 +0000 (16:02 +0300)]
zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized if zend_fcall_info_cache.function_handler is set).

7 years agozend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized...
Dmitry Stogov [Wed, 27 Dec 2017 12:15:03 +0000 (15:15 +0300)]
zend_fcall_info_cache.initialized is removed (zend_fcall_info_cache is initialized if zend_fcall_info_cache.function_handler is set).

7 years agoUse zend_hash_find() instead of zend_hash_find_ptr() to avoid double check
Dmitry Stogov [Wed, 27 Dec 2017 10:26:06 +0000 (13:26 +0300)]
Use zend_hash_find() instead of zend_hash_find_ptr() to avoid double check

7 years agoUse zend_hash_find() instead of zend_hash_find_ptr() to avoid double check
Dmitry Stogov [Wed, 27 Dec 2017 10:25:21 +0000 (13:25 +0300)]
Use zend_hash_find() instead of zend_hash_find_ptr() to avoid double check

7 years agoMerge branch 'PHP-7.2'
Xinchen Hui [Wed, 27 Dec 2017 04:52:44 +0000 (12:52 +0800)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Updated NEWS
  Fixed bug #75735 ([embed SAPI] Segmentation fault in sapi_register_post_entry)

7 years agoUpdated NEWS
Xinchen Hui [Wed, 27 Dec 2017 04:52:25 +0000 (12:52 +0800)]
Updated NEWS

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Xinchen Hui [Wed, 27 Dec 2017 04:52:06 +0000 (12:52 +0800)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed bug #75735 ([embed SAPI] Segmentation fault in sapi_register_post_entry)

7 years agoFixed bug #75735 ([embed SAPI] Segmentation fault in sapi_register_post_entry)
Xinchen Hui [Wed, 27 Dec 2017 04:51:50 +0000 (12:51 +0800)]
Fixed bug #75735 ([embed SAPI] Segmentation fault in sapi_register_post_entry)

7 years agoCombine READY_TO_DESTROY, EXTRACT_ZVAL_PTR and FREE_OP_VAR_PTR into single, better...
Dmitry Stogov [Tue, 26 Dec 2017 13:50:34 +0000 (16:50 +0300)]
Combine READY_TO_DESTROY, EXTRACT_ZVAL_PTR and FREE_OP_VAR_PTR into single, better optimized, macro.

7 years agoUse zval constructors instead ZVAL_COPY if we know the types
Dmitry Stogov [Tue, 26 Dec 2017 13:49:34 +0000 (16:49 +0300)]
Use zval constructors instead ZVAL_COPY if we know the types

7 years agoAdd _IS_NUMBER as cast_object() target type
Nikita Popov [Mon, 25 Dec 2017 12:18:45 +0000 (13:18 +0100)]
Add _IS_NUMBER as cast_object() target type

convert_scalar_to_number() will now call cast_object() with an
_IS_NUMBER argument, in which case the cast handler should return
either an integer or floating point number, whichever is more
appropriate.

Previously convert_scalar_to_number() unconditionally converted
objects to integers instead.

Fixes bug #53033.
Fixes bug #54973.
Fixes bug #73108.

7 years agoCheaper reference construction
Dmitry Stogov [Tue, 26 Dec 2017 10:30:25 +0000 (13:30 +0300)]
Cheaper reference construction

7 years agoAvoid overhead of memory allocation and useless referene-counting in implode()
Dmitry Stogov [Tue, 26 Dec 2017 10:29:18 +0000 (13:29 +0300)]
Avoid overhead of memory allocation and useless referene-counting in implode()

7 years agoRemove unnecessary type check
Nikita Popov [Mon, 25 Dec 2017 20:21:05 +0000 (21:21 +0100)]
Remove unnecessary type check

7 years agoRemove unnecessary readobj==writeobj checks
Nikita Popov [Mon, 25 Dec 2017 20:19:45 +0000 (21:19 +0100)]
Remove unnecessary readobj==writeobj checks

This can no longer be the case since PHP 7. The writeobj must
always point to a different zval.

7 years agoFixed bug #54043
Nikita Popov [Sat, 23 Dec 2017 12:34:17 +0000 (13:34 +0100)]
Fixed bug #54043

7 years agoRemove EH_SUPPRESS mode
Nikita Popov [Sat, 23 Dec 2017 12:25:26 +0000 (13:25 +0100)]
Remove EH_SUPPRESS mode

It is unused and does not work in any meaningful way:
Warnings are suppressed, but everything else (both notices and
fatals) are not. It would make some sense if it suppressed
warnings and lower, but right now this is a pointless mode.

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 22:39:59 +0000 (23:39 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Revert to Postgres 9.6, AppVeyor seems to have issues with 10

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 22:39:37 +0000 (23:39 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Revert to Postgres 9.6, AppVeyor seems to have issues with 10

7 years agoRevert to Postgres 9.6, AppVeyor seems to have issues with 10
Anatol Belski [Fri, 22 Dec 2017 22:38:04 +0000 (23:38 +0100)]
Revert to Postgres 9.6, AppVeyor seems to have issues with 10

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 22:27:20 +0000 (23:27 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Update tool path

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 22:26:42 +0000 (23:26 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Update tool path

7 years agoUpdate tool path
Anatol Belski [Fri, 22 Dec 2017 22:25:24 +0000 (23:25 +0100)]
Update tool path

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 22:15:23 +0000 (23:15 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Switch AppVeyor to PostgreSQL 10 for tests

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 22:14:50 +0000 (23:14 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Switch AppVeyor to PostgreSQL 10 for tests

7 years agoSwitch AppVeyor to PostgreSQL 10 for tests
Anatol Belski [Fri, 22 Dec 2017 22:12:27 +0000 (23:12 +0100)]
Switch AppVeyor to PostgreSQL 10 for tests

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 18:01:44 +0000 (19:01 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  [ci skip] update NEWS
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 18:01:02 +0000 (19:01 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  [ci skip] update NEWS
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Anatol Belski [Fri, 22 Dec 2017 17:59:30 +0000 (18:59 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  [ci skip] update NEWS
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Fri, 22 Dec 2017 17:22:52 +0000 (18:22 +0100)]
Merge branch 'PHP-7.2'

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Nikita Popov [Fri, 22 Dec 2017 17:22:30 +0000 (18:22 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years ago[ci skip] update NEWS
Anatol Belski [Fri, 22 Dec 2017 17:22:33 +0000 (18:22 +0100)]
[ci skip] update NEWS

7 years agoFixed bug #75579 (Interned strings buffer overflow may cause crash)
Dmitry Stogov [Thu, 21 Dec 2017 20:34:21 +0000 (23:34 +0300)]
Fixed bug #75579 (Interned strings buffer overflow may cause crash)

(cherry picked from commit 37bf8bdc1494abb2ce5cac40e0be80e23682f851)

7 years agoFixed bug #73209
Nikita Popov [Fri, 22 Dec 2017 17:11:38 +0000 (18:11 +0100)]
Fixed bug #73209

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Fri, 22 Dec 2017 17:12:23 +0000 (18:12 +0100)]
Merge branch 'PHP-7.2'

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Nikita Popov [Fri, 22 Dec 2017 17:12:03 +0000 (18:12 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoFixed bug #75242
Nikita Popov [Fri, 22 Dec 2017 17:11:38 +0000 (18:11 +0100)]
Fixed bug #75242

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Fri, 22 Dec 2017 17:01:53 +0000 (18:01 +0100)]
Merge branch 'PHP-7.2'

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Nikita Popov [Fri, 22 Dec 2017 17:01:16 +0000 (18:01 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoFixed bug #75717
Nikita Popov [Fri, 22 Dec 2017 17:00:17 +0000 (18:00 +0100)]
Fixed bug #75717

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Fri, 22 Dec 2017 16:50:48 +0000 (17:50 +0100)]
Merge branch 'PHP-7.2'

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Nikita Popov [Fri, 22 Dec 2017 16:49:20 +0000 (17:49 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

7 years agoFixed bug #70469
Anton Artamonov [Sat, 4 Nov 2017 12:51:33 +0000 (19:51 +0700)]
Fixed bug #70469

Don't generate an E_ERROR if we've already thrown an exception.
This interacts badly with error_get_last() checks.

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 15:46:03 +0000 (16:46 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fix wrong return value for fail case in set attribute handler in pdo_odbc

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 15:45:25 +0000 (16:45 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix wrong return value for fail case in set attribute handler in pdo_odbc

7 years agoFix wrong return value for fail case in set attribute handler in pdo_odbc
Anatol Belski [Fri, 22 Dec 2017 15:41:46 +0000 (16:41 +0100)]
Fix wrong return value for fail case in set attribute handler in pdo_odbc

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Fri, 22 Dec 2017 15:28:48 +0000 (16:28 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  pdo_odbc has no driver API for quoting, skip the test

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Fri, 22 Dec 2017 15:28:10 +0000 (16:28 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  pdo_odbc has no driver API for quoting, skip the test

7 years agopdo_odbc has no driver API for quoting, skip the test
Anatol Belski [Fri, 22 Dec 2017 15:22:12 +0000 (16:22 +0100)]
pdo_odbc has no driver API for quoting, skip the test

7 years agoSeparate exceptional code into cold functions.
Dmitry Stogov [Fri, 22 Dec 2017 13:35:52 +0000 (16:35 +0300)]
Separate exceptional code into cold functions.

7 years agoFix darwin builds of phpdbg using frameworks
Sara Golemon [Thu, 21 Dec 2017 21:35:10 +0000 (16:35 -0500)]
Fix darwin builds of phpdbg using frameworks

7 years agoMerge branch 'PHP-7.2'
Dmitry Stogov [Thu, 21 Dec 2017 20:44:19 +0000 (23:44 +0300)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Dmitry Stogov [Thu, 21 Dec 2017 20:36:51 +0000 (23:36 +0300)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.0' into PHP-7.1
Dmitry Stogov [Thu, 21 Dec 2017 20:35:23 +0000 (23:35 +0300)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoFixed bug #75579 (Interned strings buffer overflow may cause crash)
Dmitry Stogov [Thu, 21 Dec 2017 20:34:21 +0000 (23:34 +0300)]
Fixed bug #75579 (Interned strings buffer overflow may cause crash)

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Thu, 21 Dec 2017 17:38:53 +0000 (18:38 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Ensure expected items delivered in same order

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Thu, 21 Dec 2017 17:38:16 +0000 (18:38 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Ensure expected items delivered in same order

7 years agoEnsure expected items delivered in same order
Anatol Belski [Thu, 21 Dec 2017 17:37:23 +0000 (18:37 +0100)]
Ensure expected items delivered in same order

7 years agoAdapt test
Anatol Belski [Thu, 21 Dec 2017 17:35:02 +0000 (18:35 +0100)]
Adapt test

7 years agoAdd info about thread API used
Anatol Belski [Thu, 21 Dec 2017 16:54:31 +0000 (17:54 +0100)]
Add info about thread API used

7 years agoUpdate libmagic.patch, also reflecting PCRE2 changes
Anatol Belski [Thu, 21 Dec 2017 14:47:07 +0000 (15:47 +0100)]
Update libmagic.patch, also reflecting PCRE2 changes

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Thu, 21 Dec 2017 14:46:35 +0000 (15:46 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Update libmagic.patch

7 years agoUpdate libmagic.patch
Anatol Belski [Thu, 21 Dec 2017 14:43:04 +0000 (15:43 +0100)]
Update libmagic.patch

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Thu, 21 Dec 2017 14:42:16 +0000 (15:42 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  fileinfo: fix misleading indentation in libmagic

7 years agofileinfo: fix misleading indentation in libmagic
Riccardo Magliocchetti [Wed, 20 Dec 2017 18:07:30 +0000 (19:07 +0100)]
fileinfo: fix misleading indentation in libmagic

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Thu, 21 Dec 2017 12:49:55 +0000 (13:49 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Fix segfault. Compile param --with-tsrm-pth=yes

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Thu, 21 Dec 2017 12:49:05 +0000 (13:49 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Fix segfault. Compile param --with-tsrm-pth=yes

7 years agoFix segfault. Compile param --with-tsrm-pth=yes
Evgeny Kalashnikov [Thu, 21 Dec 2017 12:48:10 +0000 (13:48 +0100)]
Fix segfault. Compile param --with-tsrm-pth=yes

7 years agoTell the diff by returning NULL, if system has no ODBC data sources
Anatol Belski [Wed, 20 Dec 2017 21:32:10 +0000 (22:32 +0100)]
Tell the diff by returning NULL, if system has no ODBC data sources

7 years agoMerge branch 'master' of git.php.net:php-src
Dmitry Stogov [Wed, 20 Dec 2017 18:45:06 +0000 (21:45 +0300)]
Merge branch 'master' of git.php.net:php-src

* 'master' of git.php.net:php-src:
  Templatize driver name in the expected string
  Bump libcurl requirement to 7.12.1
  Avoid strlen call
  NEWS
  display headers (buildtime) and library (runtime) versions in phpinfo (libzip >= 1.3.1)

7 years agoFixed possible local assembler labels conflicts.
Dmitry Stogov [Wed, 20 Dec 2017 18:44:24 +0000 (21:44 +0300)]
Fixed possible local assembler labels conflicts.

7 years agoMerge branch 'PHP-7.2'
Anatol Belski [Wed, 20 Dec 2017 17:50:52 +0000 (18:50 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  Templatize driver name in the expected string

7 years agoMerge branch 'PHP-7.1' into PHP-7.2
Anatol Belski [Wed, 20 Dec 2017 17:50:10 +0000 (18:50 +0100)]
Merge branch 'PHP-7.1' into PHP-7.2

* PHP-7.1:
  Templatize driver name in the expected string

7 years agoTemplatize driver name in the expected string
Anatol Belski [Wed, 20 Dec 2017 17:46:56 +0000 (18:46 +0100)]
Templatize driver name in the expected string

7 years agoBump libcurl requirement to 7.12.1
Nikita Popov [Tue, 19 Dec 2017 22:16:06 +0000 (23:16 +0100)]
Bump libcurl requirement to 7.12.1

The existence of the following functions is now guaranteed:
 * curl_reset()
 * curl_strerror()
 * curl_multi_strerror()
 * curl_share_strerror()

libcurl 7.12.1 has been released more than 13 years ago and is
available even in RHEL 4.

7 years agoAvoid strlen call
Anatol Belski [Tue, 19 Dec 2017 12:12:20 +0000 (13:12 +0100)]
Avoid strlen call

7 years agoMerge branch 'PHP-7.2'
Remi Collet [Tue, 19 Dec 2017 13:48:21 +0000 (14:48 +0100)]
Merge branch 'PHP-7.2'

* PHP-7.2:
  NEWS
  display headers (buildtime) and library (runtime) versions in phpinfo (libzip >= 1.3.1)

7 years agoNEWS
Remi Collet [Tue, 19 Dec 2017 13:47:59 +0000 (14:47 +0100)]
NEWS

7 years agodisplay headers (buildtime) and library (runtime) versions in phpinfo (libzip >=...
Remi Collet [Tue, 19 Dec 2017 13:46:32 +0000 (14:46 +0100)]
display headers (buildtime) and library (runtime) versions in phpinfo (libzip >= 1.3.1)

7 years agoCompile the blacklist pattern with JIT
Anatol Belski [Tue, 19 Dec 2017 11:51:38 +0000 (12:51 +0100)]
Compile the blacklist pattern with JIT

There are certain limitations on the pattern size. Should the JIT
compilation fail, the interpreter code is still usable.

7 years agoAvoid strlen call
Anatol Belski [Tue, 19 Dec 2017 11:14:50 +0000 (12:14 +0100)]
Avoid strlen call

7 years agoRemove opcache.inherited_hack
Nikita Popov [Mon, 18 Dec 2017 20:57:23 +0000 (21:57 +0100)]
Remove opcache.inherited_hack

This ini directive has already been ignored since PHP 5.3.

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Mon, 18 Dec 2017 20:45:04 +0000 (21:45 +0100)]
Merge branch 'PHP-7.2'

[ci skip]

7 years agoDocument removal of opcache.fast_shutdown
Nikita Popov [Mon, 18 Dec 2017 20:44:36 +0000 (21:44 +0100)]
Document removal of opcache.fast_shutdown

[ci skip]

7 years agoPut interned strings into regular SHM memory if there is no space in shared interned_...
Dmitry Stogov [Mon, 18 Dec 2017 18:04:41 +0000 (21:04 +0300)]
Put interned strings into regular SHM memory if there is no space in shared interned_strings_buffer.

7 years agofixed "unused function" compilation warning
Dmitry Stogov [Mon, 18 Dec 2017 08:43:12 +0000 (11:43 +0300)]
fixed "unused function" compilation warning

7 years agoFix warning in the proper place
Dmitry Stogov [Mon, 18 Dec 2017 08:28:59 +0000 (11:28 +0300)]
Fix warning in the proper place

7 years agoUse cheaper API
Xinchen Hui [Mon, 18 Dec 2017 03:55:14 +0000 (11:55 +0800)]
Use cheaper API

7 years agoMerge branch 'PHP-7.2'
Nikita Popov [Sun, 17 Dec 2017 11:57:40 +0000 (12:57 +0100)]
Merge branch 'PHP-7.2'