# New Ticket Created by Zev Benjamin # Please include the string: [perl #50440] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=50440 >
The attached code makes parrot segfault (invoked as "./parrot segfault.pir"). I attempted to debug, but wasn't able to get to the root of the problem. It seems as though VTABLE_get_class() on line 64 of src/ops/objects.ops is returning uninitialized memory, but I'm not sure much beyond that. Zev
.namespace [ 'Foo' ] .sub 'blah' :method .end .namespace .sub 'init' :main $P1 = get_hll_global "Foo" $P0 = $P1."new"() .end