in reply to Re: List::MoreUtils seg fault
in thread List::MoreUtils seg fault

Disable the XS part of List::MoreUtils so that the Perl version of zip() is called and it won't segfault (if you can put up with how slowly it doesn't). ;)

zip has a "prototype" of (\@\@;\@\@...) and method invocation thwarts checking of prototypes and XS code is rarely robust and tends to just segfault when, for example, it is expecting at least two references to arrays but instead gets a reference to a hash.

- tye