|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-11-06 17:39 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2020-11-06 17:39 UTC] cmb@php.net
[2020-11-15 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 17:00:02 2025 UTC |
Description: ------------ running php 7(7.1.13) using php-cgi on lighttpd causes segmentation fault at zend_ast.h. the segmentation fault is: php-cgi[8722]: unhandled signal 11 at 68700050 nip 1029b9c8 lr 1029e4c0 code 30 gdb info is: (gdb) list *0x1029b9c8 0x1029b9c8 is in zend_compile_expr (Zend/zend_sst.h:239). 234 static zend_always_inline uint32_t zend_ast_get_num_children(zend_ast *ast) { 235 ZEND_ASSERT(!zend_ast_is_list(ast)); 236 return ast->kind >> ZEND_AST_NUM_CHILDREN_SHIFT; 237 } 238 static zend_always_inline uint32_t zend_ast_get_lineno(zend_ast *ast) { 239 if (ast->kind == ZEND_AST_ZVAL) { 240 zval *zv = zend_ast_get_zval(ast); 241 return zv->u2.lineno; 242 } else { 243 return ast->lineno; 244 } php 5.6.33 running ok. Test script: --------------- <? phpinfo(); ?> Expected result: ---------------- show phpinfo page Actual result: -------------- 500 - Internal Server Error