#527: Segmentation fault when stack overflows
-------------------------------------+--------------------------------------
 Reporter:  haruki.zae...@…          |       Owner:  lsansone...@…          
     Type:  defect                   |      Status:  new                    
 Priority:  major                    |   Milestone:                         
Component:  MacRuby                  |    Keywords:  stack overflow segfault
-------------------------------------+--------------------------------------
Description changed by lsansone...@…:

Old description:

> irb --> def a(n); n == 0 ? "DONE" : b(n - 1); end
> irb --> def b(n); n == 0 ? "DONE" : a(n - 1); end
> irb --> a(10000)
> Segmentation fault

New description:

 {{{
 irb --> def a(n); n == 0 ? "DONE" : b(n - 1); end
 irb --> def b(n); n == 0 ? "DONE" : a(n - 1); end
 irb --> a(10000)
 Segmentation fault
 }}}

--

-- 
Ticket URL: <http://www.macruby.org/trac/ticket/527#comment:2>
MacRuby <http://macruby.org/>

_______________________________________________
MacRuby-devel mailing list
MacRuby-devel@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

Reply via email to