mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-22 23:18:01 +03:00
Class members are destroyed in the reverse order of their declaration (like C++). The previous code destroyed members in declaration order, which caused a use-after-free in Rance 9's T_Map class. Added a test to verify the reverse destruction order.