mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
9b604abc83
It used heap allocated memory for the parser stack, but there's possibility of parser termination by exceptions. In that case, the parser stack memory is leaked. We were afraid of stack consumption, but parser stack size is only 4KB, so we don't have to worry about it (at least for the parser).