mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 11:41:42 +00:00
Fix NRE when disposing AddressSpace with 4KB pages support (#4307)
This commit is contained in:
parent
cff9046fc7
commit
410be95ab6
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ namespace Ryujinx.Cpu
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
_privateMemoryAllocator.Dispose();
|
_privateMemoryAllocator?.Dispose();
|
||||||
Base.Dispose();
|
Base.Dispose();
|
||||||
Mirror.Dispose();
|
Mirror.Dispose();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue