mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DiscIO: Fix NAND Memory Leak
CNANDContentData is a base class with a non-virtual destructor so derived classes don't get destroyed causing them to leak resources.
This commit is contained in:
@ -29,6 +29,8 @@
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
CNANDContentData::~CNANDContentData() = default;
|
||||
|
||||
CSharedContent::CSharedContent()
|
||||
{
|
||||
UpdateLocation();
|
||||
|
Reference in New Issue
Block a user