]> granicus.if.org Git - php/log
php
9 years agoMerge branch 'json_parser_method'
Jakub Zelenka [Sun, 15 May 2016 12:50:23 +0000 (13:50 +0100)]
Merge branch 'json_parser_method'

9 years agofix dir separator
Anatol Belski [Sat, 14 May 2016 21:48:04 +0000 (23:48 +0200)]
fix dir separator

9 years agoInference: $a[]= results in long keys
Nikita Popov [Sat, 14 May 2016 14:49:52 +0000 (16:49 +0200)]
Inference: $a[]= results in long keys

9 years agoInference: Fix undef handling for binary ops
Nikita Popov [Sat, 14 May 2016 11:54:41 +0000 (13:54 +0200)]
Inference: Fix undef handling for binary ops

We need to be careful about correctly handling that undef results
in a null value. Otherwise, apart from simply generating incorrect
results, we may also end up performing non-monotonic lattice
transitions, thus causing an infinite type inference loop (see
test).

9 years agoInference: Use common handling for compound assign ops
Nikita Popov [Sat, 14 May 2016 11:44:04 +0000 (13:44 +0200)]
Inference: Use common handling for compound assign ops

Extract the inference code for binary operators and then handle all
ASSIGN_* opcodes the same way.

9 years agoAdd COPY_SSA_OBJ_TYPE macro
Nikita Popov [Sat, 14 May 2016 11:23:29 +0000 (13:23 +0200)]
Add COPY_SSA_OBJ_TYPE macro

Use it consistently in the ASSIGN_* implementations, previously
it was only present in ASSIGN_ADD.

9 years agoFix & improve assign_dim inference
Nikita Popov [Sat, 14 May 2016 11:03:25 +0000 (13:03 +0200)]
Fix & improve assign_dim inference

Extract a helper function for handling ASSIGN_DIM and ASSIGN_*
with ASSIGN_DIM ev uniformly. Previously the code was copy pasted
for each ASSIGN_* op, but the variable names were not correctly
adjusted (tmp vs orig), so the type inference result was wrong.

Also sligthly improve handling:
 * Result cannot be false, will always be converted to array.
 * If the dim is a CONST string operand, we don't have to assume
   numeric strings.
 * If the inserted value may be undef, the array may contain null.

9 years agofix #72143 (preg_replace uses int instead of size_t on zend_string_allocs)
Joe Watkins [Sat, 14 May 2016 07:20:41 +0000 (08:20 +0100)]
fix #72143 (preg_replace uses int instead of size_t on zend_string_allocs)

9 years agofix #72206 (xml_parser_create/xml_parser_free leaks mem)
Joe Watkins [Sat, 14 May 2016 07:10:16 +0000 (08:10 +0100)]
fix #72206 (xml_parser_create/xml_parser_free leaks mem)

9 years agofix #72209 (ReflectionProperty::getValue() doesn't fail if object doesn't match type)
Joe Watkins [Sat, 14 May 2016 05:28:11 +0000 (06:28 +0100)]
fix #72209 (ReflectionProperty::getValue() doesn't fail if object doesn't match type)

9 years agoImplement FIPS 180-4 algos: sha512/256 and sha512/224
Sara Golemon [Sat, 14 May 2016 03:47:54 +0000 (03:47 +0000)]
Implement FIPS 180-4 algos: sha512/256 and sha512/224

These algorithms are simple extensions to the existing sha512 algo
using different initialization vectors and producing truncated output.

9 years agoCheck in generated lexer
Sara Golemon [Sat, 14 May 2016 04:31:39 +0000 (04:31 +0000)]
Check in generated lexer

This should have been included with my previous diff implementing octal overflow warning.
Ooops.

9 years agoRaise compiler warning on octal overflow
Sara Golemon [Fri, 29 Apr 2016 21:05:06 +0000 (21:05 +0000)]
Raise compiler warning on octal overflow

Addresses https://bugs.php.net/bug.php?id=71994

9 years agoAdded news entries
Dmitry Stogov [Fri, 13 May 2016 11:46:43 +0000 (14:46 +0300)]
Added news entries

9 years agoFixed bug #72188 (Nested try/finally blocks losing return value)
Dmitry Stogov [Fri, 13 May 2016 11:38:43 +0000 (14:38 +0300)]
Fixed bug #72188 (Nested try/finally blocks losing return value)

9 years agoFixed bug #72177 (Scope issue in __destruct after ReflectionProperty::setValue())
Dmitry Stogov [Fri, 13 May 2016 08:55:09 +0000 (11:55 +0300)]
Fixed bug #72177 (Scope issue in __destruct after ReflectionProperty::setValue())

9 years agofix 1f52a03082b2816826bc5bd8c241f5d016d15395
Joe Watkins [Fri, 13 May 2016 08:21:28 +0000 (09:21 +0100)]
fix 1f52a03082b2816826bc5bd8c241f5d016d15395

9 years agofix #72180 (Env variables incorrectly pretty printed in config.nice, phpinfo)
Joe Watkins [Fri, 13 May 2016 06:43:49 +0000 (07:43 +0100)]
fix #72180 (Env variables incorrectly pretty printed in config.nice, phpinfo)

9 years agoEliminated checks for (func->op_array.fn_flags & ZEND_ACC_GENERATOR) in fast path...
Dmitry Stogov [Thu, 12 May 2016 22:40:15 +0000 (01:40 +0300)]
Eliminated checks for (func->op_array.fn_flags & ZEND_ACC_GENERATOR) in fast path of DO_FCALL* handlers.
This slightly improves calls to regular function and method calls in cost of a bit slower generator initialization.
Separate call frame for generators, allocated on heap, now created by ZEND_GENERATOR_CREATE instruction.

9 years agoFix phi placement for pi targets
Nikita Popov [Thu, 12 May 2016 19:57:19 +0000 (21:57 +0200)]
Fix phi placement for pi targets

If the pi target has multiple predecessors, we need to place a
phi there. However it's not possible to express this in terms of
dominance frontiers, so we need to explicitly add it to the phi
set.

This does not yet solve the problem of non-minimal SSA for the
case where the target has multiple predecessors, but dominates
all predecessors (apart from the one creating the pi) -- but
that's an existing issue.

9 years agoExplicitly construct phi set during def propagation
Nikita Popov [Thu, 12 May 2016 19:41:24 +0000 (21:41 +0200)]
Explicitly construct phi set during def propagation

Previously the phi set was first computed during def propagation
and then computed again (per-block) during actual phi placement.
This commit changes this to store the phi set computed during
def propagation.

This makes SSA construction slightly faster (5%), but the main
purpose here is to pave the way for the next commit.

This also fixes a potential issue with the handling of irreducible
loops -- they generated additional phis, but these were not
accounted for in def propagation. (Though I'm not sure if we can
even have any irreducible loops right now.)

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Thu, 12 May 2016 18:38:02 +0000 (20:38 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  fix dir separator in test

9 years agofix dir separator in test
Anatol Belski [Thu, 12 May 2016 18:37:04 +0000 (20:37 +0200)]
fix dir separator in test

9 years agoRemoved useless code
Dmitry Stogov [Thu, 12 May 2016 13:46:37 +0000 (16:46 +0300)]
Removed useless code

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Thu, 12 May 2016 11:39:39 +0000 (13:39 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  update NEWS

9 years agoupdate NEWS
Anatol Belski [Thu, 12 May 2016 11:39:15 +0000 (13:39 +0200)]
update NEWS

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Thu, 12 May 2016 10:49:31 +0000 (12:49 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  workaround the extra new line in the test out on another env

9 years agoIntern some known (and offten used) strings.
Dmitry Stogov [Thu, 12 May 2016 10:47:22 +0000 (13:47 +0300)]
Intern some known (and offten used) strings.

9 years agoworkaround the extra new line in the test out on another env
Anatol Belski [Thu, 12 May 2016 10:45:04 +0000 (12:45 +0200)]
workaround the extra new line in the test out on another env

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Thu, 12 May 2016 09:41:18 +0000 (11:41 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed bug #72197 pg_lo_create arbitrary read

9 years agoFixed bug #72197 pg_lo_create arbitrary read
Anatol Belski [Thu, 12 May 2016 09:40:28 +0000 (11:40 +0200)]
Fixed bug #72197 pg_lo_create arbitrary read

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Thu, 12 May 2016 05:48:52 +0000 (13:48 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Added NEWS entry missed while doing merge

9 years agoAdded NEWS entry missed while doing merge
Xinchen Hui [Thu, 12 May 2016 05:48:24 +0000 (13:48 +0800)]
Added NEWS entry missed while doing merge

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Thu, 12 May 2016 05:40:32 +0000 (13:40 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Committed by accident

9 years agoCommitted by accident
Xinchen Hui [Thu, 12 May 2016 05:40:22 +0000 (13:40 +0800)]
Committed by accident

9 years agoMerge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0
Xinchen Hui [Thu, 12 May 2016 05:16:07 +0000 (13:16 +0800)]
Merge branch 'PHP-7.0' of git.php.net:/php-src into PHP-7.0

* 'PHP-7.0' of git.php.net:/php-src:
  Fix serializing ZEND_AST_SHELL_EXEC
  add missing NEWS entry
  prepare for 5.6.22RC1
  add missing NEWS entry

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Thu, 12 May 2016 05:15:57 +0000 (13:15 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed bug #72195 (pg_pconnect/pg_connect cause use-after-free)

9 years agoFixed bug #72195 (pg_pconnect/pg_connect cause use-after-free)
Xinchen Hui [Thu, 12 May 2016 05:15:33 +0000 (13:15 +0800)]
Fixed bug #72195 (pg_pconnect/pg_connect cause use-after-free)

9 years agoMerge branch 'PHP-7.0'
Sara Golemon [Thu, 12 May 2016 02:51:14 +0000 (02:51 +0000)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fix serializing ZEND_AST_SHELL_EXEC

9 years agoFix serializing ZEND_AST_SHELL_EXEC
Sara Golemon [Thu, 12 May 2016 02:28:57 +0000 (02:28 +0000)]
Fix serializing ZEND_AST_SHELL_EXEC

Currently, `foo` is reserialized as `'foo'` due to misuse of zend_ast_export().
ZEND_AST_SHELL_EXEC can only contain ZEND_AST_ZVAL(string) or ZEND_AST_ENCAPS_LIST,
so just handle the ZEND_AST_ZVAL(string) case directly.

9 years agoUse main VM stack for generators. Only single call frame for generator itself is...
Dmitry Stogov [Wed, 11 May 2016 21:44:18 +0000 (00:44 +0300)]
Use main VM stack for generators. Only single call frame for generator itself is allocated on heap, call frames for nested functions are allocated on main VM stack. In case "yield" used in context of another function call, call stack has to be frozen and then restored.

9 years agoMerge branch 'PHP-7.0'
Ferenc Kovacs [Wed, 11 May 2016 21:32:27 +0000 (23:32 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  add missing NEWS entry
  prepare for 5.6.22RC1
  add missing NEWS entry

9 years agoadd missing NEWS entry
Ferenc Kovacs [Wed, 11 May 2016 21:31:52 +0000 (23:31 +0200)]
add missing NEWS entry

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Ferenc Kovacs [Wed, 11 May 2016 21:31:09 +0000 (23:31 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  prepare for 5.6.22RC1
  add missing NEWS entry

9 years agoprepare for 5.6.22RC1
Ferenc Kovacs [Wed, 11 May 2016 21:30:04 +0000 (23:30 +0200)]
prepare for 5.6.22RC1

9 years agoadd missing NEWS entry
Ferenc Kovacs [Wed, 11 May 2016 21:29:23 +0000 (23:29 +0200)]
add missing NEWS entry

9 years agoAdd php_json_yyparse for direct use in json ext
Jakub Zelenka [Wed, 11 May 2016 20:11:47 +0000 (21:11 +0100)]
Add php_json_yyparse for direct use in json ext

9 years agoFix and clean up exporting of json parser
Jakub Zelenka [Wed, 11 May 2016 19:54:42 +0000 (20:54 +0100)]
Fix and clean up exporting of json parser

9 years agoAdded test
Dmitry Stogov [Wed, 11 May 2016 09:55:33 +0000 (12:55 +0300)]
Added test

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Wed, 11 May 2016 09:32:06 +0000 (17:32 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed Bug #72193 (dns_get_record returns array containing elements of type 'unknown')

9 years agoFixed Bug #72193 (dns_get_record returns array containing elements of type 'unknown')
Xinchen Hui [Wed, 11 May 2016 09:31:46 +0000 (17:31 +0800)]
Fixed Bug #72193 (dns_get_record returns array containing elements of type 'unknown')

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Wed, 11 May 2016 03:12:46 +0000 (11:12 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed bug #71573 (Segfault (core dumped) if paramno beyond bound)

9 years agoFixed bug #71573 (Segfault (core dumped) if paramno beyond bound)
Xinchen Hui [Wed, 11 May 2016 03:12:27 +0000 (11:12 +0800)]
Fixed bug #71573 (Segfault (core dumped) if paramno beyond bound)

9 years agoMerge branch 'PHP-7.0'
Derick Rethans [Tue, 10 May 2016 19:40:09 +0000 (15:40 -0400)]
Merge branch 'PHP-7.0'

9 years agoAllow for special case for the opcache zend extension
Derick Rethans [Tue, 10 May 2016 19:40:03 +0000 (15:40 -0400)]
Allow for special case for the opcache zend extension

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Tue, 10 May 2016 18:03:27 +0000 (20:03 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  fix handle leak

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Anatol Belski [Tue, 10 May 2016 18:02:17 +0000 (20:02 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  fix handle leak

9 years agofix handle leak
Anatol Belski [Tue, 10 May 2016 17:59:21 +0000 (19:59 +0200)]
fix handle leak

9 years agoMerge branch 'PHP-7.0'
Dmitry Stogov [Tue, 10 May 2016 14:53:43 +0000 (17:53 +0300)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  The "flock" structure has to be writable on AIX.

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Dmitry Stogov [Tue, 10 May 2016 14:53:33 +0000 (17:53 +0300)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  The "flock" structure has to be writable on AIX.

9 years agoThe "flock" structure has to be writable on AIX.
Dmitry Stogov [Tue, 10 May 2016 14:50:14 +0000 (17:50 +0300)]
The "flock" structure has to be writable on AIX.

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Tue, 10 May 2016 11:10:35 +0000 (13:10 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  prepare next 7.0.8

9 years agoprepare next 7.0.8
Anatol Belski [Tue, 10 May 2016 11:06:55 +0000 (13:06 +0200)]
prepare next 7.0.8

9 years agoMerge branch 'PHP-7.0'
Nikita Popov [Tue, 10 May 2016 10:17:54 +0000 (12:17 +0200)]
Merge branch 'PHP-7.0'

Conflicts:
ext/reflection/php_reflection.c

9 years agoDon't HT_ASSERT rc=1 in zend_hash_apply functions
Nikita Popov [Thu, 5 May 2016 12:57:32 +0000 (14:57 +0200)]
Don't HT_ASSERT rc=1 in zend_hash_apply functions

These are not necessarily used to modify the hash. Move the assert
into the APPLY_REMOVE branch only.

9 years agoFixed bug #72174
Nikita Popov [Tue, 10 May 2016 10:13:10 +0000 (12:13 +0200)]
Fixed bug #72174

Also fixes a memory leak if ::getValue() is used with __get().

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Mon, 9 May 2016 16:52:21 +0000 (18:52 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  update NEWS
  update NEWS

9 years agoupdate NEWS
Anatol Belski [Mon, 9 May 2016 16:51:54 +0000 (18:51 +0200)]
update NEWS

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Anatol Belski [Mon, 9 May 2016 16:51:25 +0000 (18:51 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  update NEWS

9 years agoupdate NEWS
Anatol Belski [Mon, 9 May 2016 16:50:40 +0000 (18:50 +0200)]
update NEWS

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Mon, 9 May 2016 15:29:56 +0000 (17:29 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Revert "Fixed bug #71820 pg_fetch_object bind parameters before call constructor"
  Revert "Backport patch for bug #71820"

9 years agoRevert "Fixed bug #71820 pg_fetch_object bind parameters before call constructor"
Anatol Belski [Mon, 9 May 2016 15:25:53 +0000 (17:25 +0200)]
Revert "Fixed bug #71820 pg_fetch_object bind parameters before call constructor"

This reverts commit b4eedd128ba9f61be08a50c94afd72837d7cf70b.

This fixed bug #72151, and reverts the fix for bug #71820.
See also bug #50636 and #49521 for the history.

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Anatol Belski [Mon, 9 May 2016 15:23:40 +0000 (17:23 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Revert "Backport patch for bug #71820"

9 years agoRevert "Backport patch for bug #71820"
Anatol Belski [Mon, 9 May 2016 15:15:40 +0000 (17:15 +0200)]
Revert "Backport patch for bug #71820"

This reverts commit 1b632cfe834bfd87d182566d7d960df7d10ded72.

This fixed bug #72151, and reverts the fix for bug #71820.
See also bug #50636 and #49521 for the history.

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Sun, 8 May 2016 13:13:01 +0000 (15:13 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed bug #64524 Add intl.use_exceptions to php.ini-*

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Anatol Belski [Sun, 8 May 2016 13:12:20 +0000 (15:12 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Fixed bug #64524 Add intl.use_exceptions to php.ini-*

9 years agoFixed bug #64524 Add intl.use_exceptions to php.ini-*
Anatol Belski [Sun, 8 May 2016 13:09:50 +0000 (15:09 +0200)]
Fixed bug #64524 Add intl.use_exceptions to php.ini-*

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Sun, 8 May 2016 05:05:05 +0000 (22:05 -0700)]
Merge branch 'PHP-7.0'

9 years agoRemove unnecessary strlen check
Xinchen Hui [Sun, 8 May 2016 05:04:31 +0000 (22:04 -0700)]
Remove unnecessary strlen check

9 years agoFixed test
Xinchen Hui [Sun, 8 May 2016 05:04:20 +0000 (22:04 -0700)]
Fixed test

9 years agoFix include_once in phpdbg
Bob Weinand [Sat, 7 May 2016 12:45:29 +0000 (14:45 +0200)]
Fix include_once in phpdbg

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Sat, 7 May 2016 07:08:35 +0000 (00:08 -0700)]
Merge branch 'PHP-7.0'

9 years agoStrlen cleanup (additions for previous one fix)
Xinchen Hui [Sat, 7 May 2016 07:07:04 +0000 (00:07 -0700)]
Strlen cleanup (additions for previous one fix)

Probably compilers will do similar optimization

9 years agoMerge branch 'patch-1' of https://github.com/Valkyrurr/php-src
Xinchen Hui [Sat, 7 May 2016 06:55:13 +0000 (23:55 -0700)]
Merge branch 'patch-1' of https://github.com/Valkyrurr/php-src

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Sat, 7 May 2016 06:54:48 +0000 (23:54 -0700)]
Merge branch 'PHP-7.0'

9 years agoMerge branch 'PHP-5.6' into PHP-7.0
Xinchen Hui [Sat, 7 May 2016 06:52:48 +0000 (23:52 -0700)]
Merge branch 'PHP-5.6' into PHP-7.0

Conflicts:
Zend/zend_strtod.c

9 years agoFixed bug #72172 (zend_hex_strtod should not use strlen)
Xinchen Hui [Sat, 7 May 2016 06:52:06 +0000 (23:52 -0700)]
Fixed bug #72172 (zend_hex_strtod should not use strlen)

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Fri, 6 May 2016 12:25:43 +0000 (20:25 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Revert "Fixed bug #72170 (JsonSerializable may inc apply count without dec it)"

9 years agoRevert "Fixed bug #72170 (JsonSerializable may inc apply count without dec it)"
Xinchen Hui [Fri, 6 May 2016 12:25:24 +0000 (20:25 +0800)]
Revert "Fixed bug #72170 (JsonSerializable may inc apply count without dec it)"

This reverts commit 459a7cc209da130256d66c1f896199540f4dadbc.

9 years agoMerge branch 'master' of git.php.net:/php-src
Xinchen Hui [Fri, 6 May 2016 10:48:28 +0000 (18:48 +0800)]
Merge branch 'master' of git.php.net:/php-src

* 'master' of git.php.net:/php-src:
  Add $http_response_header tests

9 years agoMerge branch 'PHP-7.0'
Xinchen Hui [Fri, 6 May 2016 10:39:18 +0000 (18:39 +0800)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  Fixed bug #72170 (JsonSerializable may inc apply count without dec it)

9 years agoFixed bug #72170 (JsonSerializable may inc apply count without dec it)
Xinchen Hui [Fri, 6 May 2016 10:38:26 +0000 (18:38 +0800)]
Fixed bug #72170 (JsonSerializable may inc apply count without dec it)

I don't want use zend_try here, but seems I have no choice :<

9 years agoAdd $http_response_header tests
Nikita Popov [Fri, 6 May 2016 10:36:07 +0000 (12:36 +0200)]
Add $http_response_header tests

Looks like we didn't have a single test for this functionality :/

9 years agoFixed possible crash
Dmitry Stogov [Fri, 6 May 2016 09:36:21 +0000 (12:36 +0300)]
Fixed possible crash

9 years agoReimplemented Bob's commit bac6fdb0c52c924e726c5a78de8858bf27b6586b without insignifi...
Dmitry Stogov [Fri, 6 May 2016 07:09:04 +0000 (10:09 +0300)]
Reimplemented Bob's commit bac6fdb0c52c924e726c5a78de8858bf27b6586b without insignificant renaming and white-space changes

9 years agoFixed typo
Dmitry Stogov [Fri, 6 May 2016 06:48:58 +0000 (09:48 +0300)]
Fixed typo

9 years agoRevert "Refactor zval cleanup into single function"
Dmitry Stogov [Fri, 6 May 2016 06:23:37 +0000 (09:23 +0300)]
Revert "Refactor zval cleanup into single function"

This reverts commit bac6fdb0c52c924e726c5a78de8858bf27b6586b.

9 years agoMerge branch 'PHP-7.0'
Anatol Belski [Fri, 6 May 2016 07:41:44 +0000 (09:41 +0200)]
Merge branch 'PHP-7.0'

* PHP-7.0:
  update NEWS
  reorder entry alphabetically

9 years agoupdate NEWS
Anatol Belski [Fri, 6 May 2016 07:41:21 +0000 (09:41 +0200)]
update NEWS

9 years agoreorder entry alphabetically
Anatol Belski [Fri, 6 May 2016 07:39:02 +0000 (09:39 +0200)]
reorder entry alphabetically