mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-27 01:20:28 +03:00
Some classes in Dungeons & Dolls serialize themselves using `File.Write(this)` in their destructors. Because `File.Write` takes the argument by value, a copy of `this` is created. If the destructor is called on the copied `this`, it falls into an an infinite loop.