mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #9573 from JosJuice/volumeverifier-cancel-crash
VolumeVerifier: Fix potential crash when cancelling
This commit is contained in:
commit
f44f20560d
1 changed files with 4 additions and 1 deletions
|
@ -372,7 +372,10 @@ VolumeVerifier::VolumeVerifier(const Volume& volume, bool redump_verification,
|
|||
m_redump_verification = false;
|
||||
}
|
||||
|
||||
VolumeVerifier::~VolumeVerifier() = default;
|
||||
VolumeVerifier::~VolumeVerifier()
|
||||
{
|
||||
WaitForAsyncOperations();
|
||||
}
|
||||
|
||||
void VolumeVerifier::Start()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue