xslate / p5-Mouse

Lightweight class builder for Perl, as a subset of Moose
https://metacpan.org/release/Mouse
Other
46 stars 32 forks source link

Fix stack collapse on new object BUILD #71

Closed Etsukata closed 7 years ago

Etsukata commented 7 years ago

Current implementation of calling BUILD from XS discards scalar by its own POPs. However, it can unexpectedly decrement PL_stack_sp and lead to stack collapse, especially 'STACK UNDERFLOW!!!'. Fix discards on BUILD and also DEMOLISH using G_DISCARD flag according to the perldoc documentation.

Stack Snapshot

syohex commented 7 years ago

Looks good. Thanks.

syohex commented 7 years ago

I have released new version.

https://metacpan.org/release/SYOHEX/Mouse-v2.4.8

Etsukata commented 7 years ago

Great! Thanks.