]> granicus.if.org Git - php/log
php
11 years agoMore zend_string usage in PCRE
Nikita Popov [Fri, 25 Apr 2014 10:32:30 +0000 (12:32 +0200)]
More zend_string usage in PCRE

Avoid a few copies and zval duplications

11 years agoMerge mainstream 'master' branch into refactoring
Dmitry Stogov [Fri, 25 Apr 2014 20:32:51 +0000 (00:32 +0400)]
Merge mainstream 'master' branch into refactoring
During merge I had to revert:
Nikita's patch for php_splice() (it probably needs to be applyed again)
Bob Weinand's patches related to constant expression handling (we need to review them carefully)
I also reverted all our attempts to support sapi/phpdbg (we didn't test it anyway)

Conflicts:
Zend/zend.h
Zend/zend_API.c
Zend/zend_ast.c
Zend/zend_compile.c
Zend/zend_compile.h
Zend/zend_constants.c
Zend/zend_exceptions.c
Zend/zend_execute.c
Zend/zend_execute.h
Zend/zend_execute_API.c
Zend/zend_hash.c
Zend/zend_highlight.c
Zend/zend_language_parser.y
Zend/zend_language_scanner.c
Zend/zend_language_scanner_defs.h
Zend/zend_variables.c
Zend/zend_vm_def.h
Zend/zend_vm_execute.h
ext/date/php_date.c
ext/dom/documenttype.c
ext/hash/hash.c
ext/iconv/iconv.c
ext/mbstring/tests/zend_multibyte-10.phpt
ext/mbstring/tests/zend_multibyte-11.phpt
ext/mbstring/tests/zend_multibyte-12.phpt
ext/mysql/php_mysql.c
ext/mysqli/mysqli.c
ext/mysqlnd/mysqlnd_reverse_api.c
ext/mysqlnd/php_mysqlnd.c
ext/opcache/ZendAccelerator.c
ext/opcache/zend_accelerator_util_funcs.c
ext/opcache/zend_persist.c
ext/opcache/zend_persist_calc.c
ext/pcre/php_pcre.c
ext/pdo/pdo_dbh.c
ext/pdo/pdo_stmt.c
ext/pdo_pgsql/pgsql_driver.c
ext/pgsql/pgsql.c
ext/reflection/php_reflection.c
ext/session/session.c
ext/spl/spl_array.c
ext/spl/spl_observer.c
ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/html.c
ext/standard/mail.c
ext/standard/php_array.h
ext/standard/proc_open.c
ext/standard/streamsfuncs.c
ext/standard/user_filters.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
main/php_variables.c
sapi/phpdbg/phpdbg.c
sapi/phpdbg/phpdbg_bp.c
sapi/phpdbg/phpdbg_frame.c
sapi/phpdbg/phpdbg_help.c
sapi/phpdbg/phpdbg_list.c
sapi/phpdbg/phpdbg_print.c
sapi/phpdbg/phpdbg_prompt.c

11 years agoUse appropriate macros
Dmitry Stogov [Fri, 25 Apr 2014 07:54:10 +0000 (11:54 +0400)]
Use appropriate macros

11 years agoUse appropriate macro
Dmitry Stogov [Fri, 25 Apr 2014 07:29:35 +0000 (11:29 +0400)]
Use appropriate macro

11 years agoAvoid useless allocations
Dmitry Stogov [Fri, 25 Apr 2014 07:29:18 +0000 (11:29 +0400)]
Avoid useless allocations

11 years agoMerge branch 'PHP-5.6'
Stanislav Malyshev [Fri, 25 Apr 2014 07:07:12 +0000 (00:07 -0700)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  update NEWS
  update NEWS
  add a test case previously broken by a bad fix
  Revert "Fixed bug #64604"

11 years agoupdate NEWS
Stanislav Malyshev [Fri, 25 Apr 2014 07:00:49 +0000 (00:00 -0700)]
update NEWS

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Fri, 25 Apr 2014 07:00:20 +0000 (00:00 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  update NEWS
  add a test case previously broken by a bad fix
  Revert "Fixed bug #64604"

11 years agoupdate NEWS
Stanislav Malyshev [Fri, 25 Apr 2014 07:00:01 +0000 (00:00 -0700)]
update NEWS

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Fri, 25 Apr 2014 06:59:32 +0000 (23:59 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  add a test case previously broken by a bad fix
  Revert "Fixed bug #64604"

11 years agoadd a test case previously broken by a bad fix
Stanislav Malyshev [Fri, 25 Apr 2014 06:58:38 +0000 (23:58 -0700)]
add a test case previously broken by a bad fix

11 years agoRevert "Fixed bug #64604"
Stanislav Malyshev [Fri, 25 Apr 2014 06:49:52 +0000 (23:49 -0700)]
Revert "Fixed bug #64604"

This reverts commit b05c088a3abf8e4c6fb6e40418423a9e2dd3d929.
Breaks parsing urls where query has : in it, like: /foo/bar?baz=goo:boo

11 years agoEnable PCRE JIT compiler
Dmitry Stogov [Fri, 25 Apr 2014 04:33:37 +0000 (08:33 +0400)]
Enable PCRE JIT compiler

11 years agoFixed fetch into refcount hanlding (now 3 test fails)
Xinchen Hui [Fri, 25 Apr 2014 03:45:23 +0000 (11:45 +0800)]
Fixed fetch into refcount hanlding (now 3 test fails)

11 years agoFixed bindColumn
Xinchen Hui [Fri, 25 Apr 2014 03:36:53 +0000 (11:36 +0800)]
Fixed bindColumn

11 years agoFixed memleak
Xinchen Hui [Fri, 25 Apr 2014 03:34:00 +0000 (11:34 +0800)]
Fixed memleak

11 years agoFixed memleak in quote
Xinchen Hui [Fri, 25 Apr 2014 03:04:11 +0000 (11:04 +0800)]
Fixed memleak in quote

11 years agoFixed tests (object id)
Xinchen Hui [Fri, 25 Apr 2014 03:02:19 +0000 (11:02 +0800)]
Fixed tests (object id)

11 years agoFixed reference handling in bindCloumn
Xinchen Hui [Fri, 25 Apr 2014 03:00:35 +0000 (11:00 +0800)]
Fixed reference handling in bindCloumn

11 years agoFixed register bound parameters in execute
Xinchen Hui [Fri, 25 Apr 2014 02:44:21 +0000 (10:44 +0800)]
Fixed register bound parameters in execute

11 years agoFixed refcount of dbh (we don't need another refcount anymore)
Xinchen Hui [Fri, 25 Apr 2014 02:27:23 +0000 (10:27 +0800)]
Fixed refcount of dbh (we don't need another refcount anymore)

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Dmitry Stogov [Thu, 24 Apr 2014 20:57:12 +0000 (00:57 +0400)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoOptimized constant lookup
Dmitry Stogov [Thu, 24 Apr 2014 20:56:15 +0000 (00:56 +0400)]
Optimized constant lookup

11 years agoMerge branch 'PHP-5.6'
Anatol Belski [Thu, 24 Apr 2014 18:16:29 +0000 (20:16 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  updated libmagic.patch for 5.6+
  updated libmagic.patch

11 years agoupdated libmagic.patch for 5.6+
Anatol Belski [Thu, 24 Apr 2014 18:16:06 +0000 (20:16 +0200)]
updated libmagic.patch for 5.6+

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 24 Apr 2014 18:15:01 +0000 (20:15 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  updated libmagic.patch

11 years agoupdated libmagic.patch
Anatol Belski [Thu, 24 Apr 2014 18:13:47 +0000 (20:13 +0200)]
updated libmagic.patch

11 years agoMerge branch 'PHP-5.6'
Anatol Belski [Thu, 24 Apr 2014 17:53:20 +0000 (19:53 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  backport this piece from 5.6, related to the #66307 fix

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 24 Apr 2014 17:52:53 +0000 (19:52 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  backport this piece from 5.6, related to the #66307 fix

11 years agobackport this piece from 5.6, related to the #66307 fix
Anatol Belski [Thu, 24 Apr 2014 17:50:23 +0000 (19:50 +0200)]
backport this piece from 5.6, related to the #66307 fix

11 years agoMerge branch 'PHP-5.6'
Anatol Belski [Thu, 24 Apr 2014 17:36:20 +0000 (19:36 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  updated NEWS
  Fixed bug #66307 Fileinfo crashes with powerpoint files

11 years agoupdated NEWS
Anatol Belski [Thu, 24 Apr 2014 17:35:52 +0000 (19:35 +0200)]
updated NEWS

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 24 Apr 2014 17:33:54 +0000 (19:33 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Fixed bug #66307 Fileinfo crashes with powerpoint files

Conflicts:
ext/fileinfo/libmagic/readcdf.c

11 years agoFixed bug #66307 Fileinfo crashes with powerpoint files
Anatol Belski [Thu, 24 Apr 2014 17:30:34 +0000 (19:30 +0200)]
Fixed bug #66307 Fileinfo crashes with powerpoint files

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Thu, 24 Apr 2014 15:29:20 +0000 (23:29 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Dmitry Stogov [Thu, 24 Apr 2014 15:15:30 +0000 (19:15 +0400)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoReimplement strtr()
Dmitry Stogov [Thu, 24 Apr 2014 15:14:29 +0000 (19:14 +0400)]
Reimplement strtr()

11 years agoFixed Aggregate
Xinchen Hui [Thu, 24 Apr 2014 14:43:30 +0000 (22:43 +0800)]
Fixed Aggregate

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Thu, 24 Apr 2014 13:14:57 +0000 (21:14 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoVarious bugs fixed
Xinchen Hui [Thu, 24 Apr 2014 13:14:36 +0000 (21:14 +0800)]
Various bugs fixed

11 years agoRedesigned zend_execute_data layout now EX(object), EX(scope) and EX(called_scope...
Dmitry Stogov [Thu, 24 Apr 2014 11:53:20 +0000 (15:53 +0400)]
Redesigned zend_execute_data layout now EX(object), EX(scope) and EX(called_scope) arr properties of the current function execution co
ntext. They are set during zend_execute_data initialization and never changed.

11 years agoMerge branch 'PHP-5.6'
Anatol Belski [Thu, 24 Apr 2014 09:07:08 +0000 (11:07 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  use a portable strndup implementation
  fixed C89 compat
  prepare config.w32
  add parser files to dist

11 years agoMerge remote-tracking branch 'phpdbg/master' into PHP-5.6
Anatol Belski [Thu, 24 Apr 2014 09:05:52 +0000 (11:05 +0200)]
Merge remote-tracking branch 'phpdbg/master' into PHP-5.6

11 years agouse a portable strndup implementation
Anatol Belski [Thu, 24 Apr 2014 09:01:54 +0000 (11:01 +0200)]
use a portable strndup implementation

11 years agofixed C89 compat
Anatol Belski [Thu, 24 Apr 2014 09:00:36 +0000 (11:00 +0200)]
fixed C89 compat

11 years agoprepare config.w32
Anatol Belski [Thu, 24 Apr 2014 08:58:30 +0000 (10:58 +0200)]
prepare config.w32

11 years agoMerge branch 'PHP-5.6'
Anatol Belski [Thu, 24 Apr 2014 08:53:31 +0000 (10:53 +0200)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  fix dll export

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Anatol Belski [Thu, 24 Apr 2014 08:52:59 +0000 (10:52 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  fix dll export

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Thu, 24 Apr 2014 08:52:22 +0000 (10:52 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix dll export

11 years agofix dll export
Anatol Belski [Thu, 24 Apr 2014 08:51:42 +0000 (10:51 +0200)]
fix dll export

11 years agoadd parser files to dist
krakjoe [Thu, 24 Apr 2014 07:09:35 +0000 (08:09 +0100)]
add parser files to dist

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Thu, 24 Apr 2014 02:18:39 +0000 (10:18 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoSmall zts fix
Nikita Popov [Wed, 23 Apr 2014 20:33:38 +0000 (22:33 +0200)]
Small zts fix

11 years agoFix strict array comparison
Nikita Popov [Wed, 23 Apr 2014 18:33:16 +0000 (20:33 +0200)]
Fix strict array comparison

Fixes Symfony test failures

11 years agoPort ext/hash
Nikita Popov [Wed, 23 Apr 2014 18:05:57 +0000 (20:05 +0200)]
Port ext/hash

Unsure what to do about hash_final

11 years agoAllocate zend_strings with correct size
Nikita Popov [Wed, 23 Apr 2014 17:05:16 +0000 (19:05 +0200)]
Allocate zend_strings with correct size

For me (32bit) sizeof(zend_string) is 20, which means that the
char[1] array at the end is padded with three bytes. Thus allocating
based on sizeof(zend_string)-1 overallocates by those 3 padding bytes.

This commit fixes the allocation size, by using XtOffsetOf.

11 years agoFix ZTS build
Nikita Popov [Wed, 23 Apr 2014 16:30:24 +0000 (18:30 +0200)]
Fix ZTS build

11 years agoRefactor pdo_sqlite (only compilable)
Xinchen Hui [Wed, 23 Apr 2014 03:41:57 +0000 (11:41 +0800)]
Refactor pdo_sqlite (only compilable)

11 years agoClean up (use zend_string and foreach macros)
Xinchen Hui [Wed, 23 Apr 2014 02:58:08 +0000 (10:58 +0800)]
Clean up (use zend_string and foreach macros)

11 years agoMerge branch 'PHP-5.6'
Stanislav Malyshev [Tue, 22 Apr 2014 23:59:11 +0000 (16:59 -0700)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  Fix accepting ill-formed UTF-8 characters

11 years agoMerge branch 'PHP-5.5' into PHP-5.6
Stanislav Malyshev [Tue, 22 Apr 2014 23:57:47 +0000 (16:57 -0700)]
Merge branch 'PHP-5.5' into PHP-5.6

* PHP-5.5:
  Fix accepting ill-formed UTF-8 characters

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Tue, 22 Apr 2014 23:57:17 +0000 (16:57 -0700)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fix accepting ill-formed UTF-8 characters

Conflicts:
ext/phar/phar_path_check.c

11 years agoFix accepting ill-formed UTF-8 characters
Jakub Zelenka [Mon, 21 Apr 2014 12:02:20 +0000 (13:02 +0100)]
Fix accepting ill-formed UTF-8 characters

Conflicts:
ext/phar/phar_path_check.c

11 years agoUse symbolic names instead of magic constants + optimization
Dmitry Stogov [Tue, 22 Apr 2014 22:47:41 +0000 (02:47 +0400)]
Use symbolic names instead of magic constants + optimization

11 years agoInitialize hash as unpacked if it contains string keys
Nikita Popov [Tue, 22 Apr 2014 19:33:49 +0000 (21:33 +0200)]
Initialize hash as unpacked if it contains string keys

11 years agoFix zts
Nikita Popov [Tue, 22 Apr 2014 17:39:13 +0000 (19:39 +0200)]
Fix zts

11 years agoPass expected array size hint in INIT_ARRAY
Nikita Popov [Tue, 22 Apr 2014 15:54:34 +0000 (17:54 +0200)]
Pass expected array size hint in INIT_ARRAY

To avoid unnecessary rehashes

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Tue, 22 Apr 2014 16:18:18 +0000 (00:18 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoRefactored sqlite3 (all tests passes)
Xinchen Hui [Tue, 22 Apr 2014 16:17:29 +0000 (00:17 +0800)]
Refactored sqlite3 (all tests passes)

11 years agoFixed compilaation warnings
Dmitry Stogov [Tue, 22 Apr 2014 14:52:59 +0000 (18:52 +0400)]
Fixed compilaation warnings

11 years agoMerge branch 'PHP-5.6'
Felipe Pena [Tue, 22 Apr 2014 13:49:18 +0000 (10:49 -0300)]
Merge branch 'PHP-5.6'

* PHP-5.6:
  sapi/litespeed/lsapi_main.c: Fix bug #63228

11 years agosapi/litespeed/lsapi_main.c: Fix bug #63228
George Wang [Fri, 12 Oct 2012 17:04:22 +0000 (13:04 -0400)]
sapi/litespeed/lsapi_main.c: Fix bug #63228

Fix compiling error at line 606 (error: format not a string
literal and no format arguments [-Werror=format-security]

11 years agoFixed compilation warnings
Dmitry Stogov [Tue, 22 Apr 2014 13:46:34 +0000 (17:46 +0400)]
Fixed compilation warnings

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Tue, 22 Apr 2014 11:10:19 +0000 (19:10 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoFixed segfault cause EG(This) is modified
Xinchen Hui [Tue, 22 Apr 2014 11:08:58 +0000 (19:08 +0800)]
Fixed segfault cause EG(This) is modified

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Dmitry Stogov [Tue, 22 Apr 2014 10:38:00 +0000 (14:38 +0400)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoUSE ZEND_HASH_FOREACH_* macros
Xinchen Hui [Tue, 22 Apr 2014 10:29:56 +0000 (18:29 +0800)]
USE ZEND_HASH_FOREACH_* macros

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Tue, 22 Apr 2014 10:23:47 +0000 (18:23 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoRefactor PDO (only compilable now)
Xinchen Hui [Tue, 22 Apr 2014 10:23:03 +0000 (18:23 +0800)]
Refactor PDO (only compilable now)

11 years agoFixed typo
Dmitry Stogov [Tue, 22 Apr 2014 09:11:07 +0000 (13:11 +0400)]
Fixed typo

11 years agoOptimized ZEND_SEND_REF
Dmitry Stogov [Tue, 22 Apr 2014 09:10:53 +0000 (13:10 +0400)]
Optimized ZEND_SEND_REF

11 years agoZEND_SEND_* optimization
Dmitry Stogov [Tue, 22 Apr 2014 08:33:00 +0000 (12:33 +0400)]
ZEND_SEND_* optimization

11 years agoCache knowledge about missing property_info
Dmitry Stogov [Tue, 22 Apr 2014 06:11:41 +0000 (10:11 +0400)]
Cache knowledge about missing property_info

11 years agoMerge branch 'refactoring2' of github.com:zendtech/php into refactoring2
Xinchen Hui [Tue, 22 Apr 2014 03:59:53 +0000 (11:59 +0800)]
Merge branch 'refactoring2' of github.com:zendtech/php into refactoring2

11 years agoUse shorter call chain
Dmitry Stogov [Mon, 21 Apr 2014 22:34:34 +0000 (02:34 +0400)]
Use shorter call chain

11 years agoMerge branch 'PHP-5.6'
Bob Weinand [Mon, 21 Apr 2014 22:21:34 +0000 (00:21 +0200)]
Merge branch 'PHP-5.6'

11 years agoAdded autogenerated phpdbg parser files to .gitignore
Bob Weinand [Mon, 21 Apr 2014 22:19:38 +0000 (00:19 +0200)]
Added autogenerated phpdbg parser files to .gitignore

11 years agoUse fast comparison function
Dmitry Stogov [Mon, 21 Apr 2014 22:03:10 +0000 (02:03 +0400)]
Use fast comparison function

11 years agoChiper __autoload() function caching
Dmitry Stogov [Mon, 21 Apr 2014 21:41:40 +0000 (01:41 +0400)]
Chiper __autoload() function caching

11 years agoAvoid string duplication
Dmitry Stogov [Mon, 21 Apr 2014 21:41:09 +0000 (01:41 +0400)]
Avoid string duplication

11 years agoMerge branch 'PHP-5.6'
Bob Weinand [Mon, 21 Apr 2014 21:32:57 +0000 (23:32 +0200)]
Merge branch 'PHP-5.6'

11 years agoMerge sapi/phpdbg into PHP-5.6
Bob Weinand [Mon, 21 Apr 2014 21:29:25 +0000 (23:29 +0200)]
Merge sapi/phpdbg into PHP-5.6

11 years agoFixed infinite loop when quitting (sometimes)
Bob Weinand [Mon, 21 Apr 2014 21:14:06 +0000 (23:14 +0200)]
Fixed infinite loop when quitting (sometimes)

11 years agofixup help, behaviour of step command when not executing
krakjoe [Mon, 21 Apr 2014 21:00:21 +0000 (22:00 +0100)]
fixup help, behaviour of step command when not executing

11 years agobuffer input to repeat commands
krakjoe [Mon, 21 Apr 2014 20:43:19 +0000 (21:43 +0100)]
buffer input to repeat commands

11 years agozend_isset_isempty_dim_prop_obj_handler() split into separate handlers. (Actually...
Dmitry Stogov [Mon, 21 Apr 2014 20:32:29 +0000 (00:32 +0400)]
zend_isset_isempty_dim_prop_obj_handler() split into separate handlers. (Actually, it shared near nothing)

11 years agoMerge branch 'master' of https://github.com/krakjoe/phpdbg
krakjoe [Mon, 21 Apr 2014 20:28:02 +0000 (21:28 +0100)]
Merge branch 'master' of https://github.com/krakjoe/phpdbg

11 years agoremove -e option in favour of taking script from argv[]
krakjoe [Mon, 21 Apr 2014 20:24:41 +0000 (21:24 +0100)]
remove -e option in favour of taking script from argv[]

11 years agoReverted chunk committed by mistake
Dmitry Stogov [Mon, 21 Apr 2014 19:32:36 +0000 (23:32 +0400)]
Reverted chunk committed by mistake

11 years agoHandle references in "slow path"
Dmitry Stogov [Mon, 21 Apr 2014 19:30:19 +0000 (23:30 +0400)]
Handle references in "slow path"