Ticket #1680 (assigned defect)

Opened 5 years ago

Last modified 2 years ago

deep recursion causes segfaults, even in simple cases

Reported by: tim Assigned to: tim (accepted)
Priority: high Milestone: 3.1.0 beta
Component: Core Version: trunk
Severity: crash Keywords:
Cc:

Description (Last modified by weyrick)

<?php
function bla() {
  bla();
};
bla();
?>

That's admittedly a useless example, but it should, perhaps
with pcc -O, turn into a nice tail-recursive loop.

Change History

03/24/04 11:55:33 changed by weyrick

  • priority changed from normal to high.

04/15/07 09:00:40 changed by weyrick

  • version set to HEAD.
  • type set to defect.
  • description changed.
  • severity changed from feature to crash.

04/15/07 09:20:55 changed by weyrick

  • milestone set to 3.1.0 beta.