diff options
author | Hailong Zhao <hailongz@criticalmass.com> | 2020-09-09 18:34:14 -0400 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-11 09:51:44 +0200 |
commit | 9e3e83459c96e3108671a030b9b9a6aa0e5b5007 (patch) | |
tree | 0f57793653bc0f4227b31ee9556fb22ffa657a6a | |
parent | b89aee4f87a3d2ce298cddb1b16560a522c77212 (diff) | |
download | php-git-9e3e83459c96e3108671a030b9b9a6aa0e5b5007.tar.gz |
Remove the duplicate line in zend_ast.c
Closes GH-6107.
-rw-r--r-- | Zend/zend_ast.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_ast.c b/Zend/zend_ast.c index 40aae750a5..cb61bec5d7 100644 --- a/Zend/zend_ast.c +++ b/Zend/zend_ast.c @@ -164,7 +164,6 @@ ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_1(zend_ast_kind kind, zend_ast lineno = CG(zend_lineno); } ast->lineno = lineno; - ast->lineno = lineno; return ast; } |