-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
Segmentation fault (stack overflow in phpdbg) in main/spprintf.c #16041
Labels
Comments
Minimal reproduction (slightly different stack overflow trace but should be much clearer to reason with) <?php
class Canary {
public $self;
public function __construct() {
$this->self = $fusion;
}
public function __destruct() {
new Canary();
}
}
new Canary(); phpdbg output
|
It seems phpdbg doesn't support the stack overflow check at all. I think it's because it overrides and skips |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
The following code:
To reproduce:
PHP Version
PHP 8.4.0-dev
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: