mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:28:33 +00:00
Fix missing domain service object dispose (#4879)
This commit is contained in:
parent
a7c6e6a8cf
commit
0a0675a7f6
|
@ -165,6 +165,12 @@ namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|||
|
||||
entry.Owner = null;
|
||||
obj = entry.Obj;
|
||||
|
||||
if (obj.ServiceObject is IDisposable disposableObj)
|
||||
{
|
||||
disposableObj.Dispose();
|
||||
}
|
||||
|
||||
entry.Obj = null;
|
||||
_entries.Remove(entry.Node);
|
||||
entry.Node = null;
|
||||
|
|
Loading…
Reference in a new issue