mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-04-02 22:50:07 +00:00

The optionals are unconditionally dereferenced when setting the custom error text, and in a few cases this function is called using the default value of the optionals. This means we'd be dereferencing uninitialized storage. Since they're used unconditionally, we can use value_or to set a default when storage is uninitialized.