diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2014-04-21 18:25:34 +0400 | 
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2014-04-21 18:25:34 +0400 | 
| commit | 72c287bd232ef3a0dc5ae76a4b5b5879a8ee7786 (patch) | |
| tree | 8faa259c298da79116fac7e6efc370434af70f6d /ext/opcache/zend_shared_alloc.c | |
| parent | afe66d89a122d0349f56ddd4c4abfd5d2da68f19 (diff) | |
| download | php-git-72c287bd232ef3a0dc5ae76a4b5b5879a8ee7786.tar.gz | |
Combine HashTable.flags and HashTable.nApplyCount into single 32-bit word
Diffstat (limited to 'ext/opcache/zend_shared_alloc.c')
| -rw-r--r-- | ext/opcache/zend_shared_alloc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.c b/ext/opcache/zend_shared_alloc.c index 4a31d3de6a..0faabee8b2 100644 --- a/ext/opcache/zend_shared_alloc.c +++ b/ext/opcache/zend_shared_alloc.c @@ -402,7 +402,7 @@ void zend_shared_alloc_lock(TSRMLS_D)  	 * won't be taken from space which is freed by efree in memdup.  	 * Otherwise it leads to false matches in memdup check.  	 */ -	zend_hash_init(&xlat_table, 100, NULL, NULL, 1); +	zend_hash_init(&xlat_table, 128, NULL, NULL, 1);  }  void zend_shared_alloc_unlock(TSRMLS_D)  | 
