com php-src: Fugbix typo: ext/opcache/Optimizer/zend_cfg.c
[email protected] (Sebastian Bergmann)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: ccc35d1903b4d2baab478f705273026c6889a11e Author: Sebastian Bergmann <[email protected]> Thu, 16 Mar 2017 19:10:07 +0100 Parents: 052aa466e1f309c83503fede7f02ffa4ed772d4a Branches: PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=ccc35d1903b4d2baab478f705273026c6889a11e Log: Fugbix typo Changed paths: M ext/opcache/Optimizer/zend_cfg.c Diff: diff --git a/ext/opcache/Optimizer/zend_cfg.c b/ext/opcache/Optimizer/zend_cfg.c index c9d951b..2163d7c 100644 --- a/ext/opcache/Optimizer/zend_cfg.c +++ b/ext/opcache/Optimizer/zend_cfg.c @@ -778,7 +778,7 @@ int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg, uint32 ZEND_WORKLIST_ALLOCA(&work, cfg->blocks_count, list_use_heap); /* We don't materialize the DJ spanning tree explicitly, as we are only interested in ancestor - * querties. These are implemented by checking entry/exit times of the DFS search. */ + * queries. These are implemented by checking entry/exit times of the DFS search. */ entry_times = do_alloca(2 * sizeof(int) * cfg->blocks_count, tree_use_heap); exit_times = entry_times + cfg->blocks_count; memset(entry_times, -1, 2 * sizeof(int) * cfg->blocks_count);