mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-08 14:00:07 -04:00
lnxgameController::flush accesses this->m_MouseActive before that member being initialized with something sensible, making ASAN report: linux/lnxcontroller.cpp:259:8: runtime error: load of value 190, which is not a valid value for type 'bool' linux/lnxcontroller.cpp:259:33: runtime error: load of value 190, which is not a valid value for type 'bool' Thanks to the introduction of mem_rmalloc, it has been established that struct lnxgameController is not malloc'd anywhere, so any instantiation runs its constructor properly.