mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-23 18:42:56 +00:00
std::malloc was being called inside SigHandler's constructor without a std::free. This doesn't really matter as SigHandler is used as a singleton and the OS will reclaim that memory. That said, properly freeing memory keeps -fsanitize=address quiet.