-
Notifications
You must be signed in to change notification settings - Fork 8k
- fix bug #61541, Segfault when using ob_* in output_callback #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for the patch. I'll merge it after run-tests.php finished. |
Comment on behalf of yohgaki at php.net: Applied. Thank you. |
@yohgaki I didn't add the bug fix for #61541 to 5.3 branch's NEWS file. could you do it for me? another pull request seems noise. thanks |
On Tue, Apr 3, 2012 at 11:26 AM, reeze
the same bug exists in 5.3 too? as I remebered, 5.4 change the ouput thanks
Laruence Xinchen Hui |
@php-pulls thanks. |
On Tue, Apr 3, 2012 at 12:08 PM, reeze
Hi: thanks
Laruence Xinchen Hui |
Thanks Xinchen @laruence |
@see tests/output/ob_011.phpt there is a XFAIL
In PHP5.4 using ob_* functions in output_callback will issue Fatal error, but in 5.3 only calling ob_start() function will raise Fatal error ,but calling ob_clean/flush* functions will cause Segfault because of the endless recurse function call.
maybe the patch isn't perfect, please don't hesitate to let me know.