|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-05-15 18:41 UTC] sixd@php.net
-Status: Open
+Status: Feedback
[2012-05-15 18:41 UTC] sixd@php.net
[2012-05-16 11:15 UTC] zhihong dot chen dot cn at gmail dot com
-Status: Feedback
+Status: Open
[2012-05-16 11:15 UTC] zhihong dot chen dot cn at gmail dot com
[2012-05-16 18:03 UTC] zhihong dot chen dot cn at gmail dot com
-Summary: bcompiler segmentfault
+Summary: bcompiler compile failed
[2012-05-16 18:03 UTC] zhihong dot chen dot cn at gmail dot com
[2012-08-03 04:28 UTC] roberto at spadim dot com dot br
[2013-01-14 09:23 UTC] jandanson at soloeurope dot com
[2013-01-14 09:57 UTC] alan_k@php.net
-Status: Open
+Status: Duplicate
[2013-01-14 09:57 UTC] alan_k@php.net
[2013-06-18 16:29 UTC] vahidhwp at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 14:00:02 2025 UTC |
Description: ------------ Comipile bcompiler as module for php 5.4.3 Using c.php to compiler hello application t.php into t.phpc Compiling t.php , then run php t.phpc will cause segmentfault. Test script: --------------- c.php <?PHP $fh = fopen('t.phpc', "w"); bcompiler_write_header($fh); $res = bcompiler_write_file($fh, 't.php'); bcompiler_write_footer($fh); fclose($fh); t.php <?PHP echo 'Hello World'.PHP_EOL; Expected result: ---------------- t.phpc should print hello world Actual result: -------------- Segmentation fault