mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
DiscScrubber: Add another nullptr check
This commit is contained in:
parent
d01356d312
commit
20081a98f6
@ -95,6 +95,9 @@ bool SetupScrub(const std::string& filename, int block_size)
|
|||||||
m_BlocksPerCluster = CLUSTER_SIZE / m_BlockSize;
|
m_BlocksPerCluster = CLUSTER_SIZE / m_BlockSize;
|
||||||
|
|
||||||
m_Disc = CreateVolumeFromFilename(filename);
|
m_Disc = CreateVolumeFromFilename(filename);
|
||||||
|
if (!m_Disc)
|
||||||
|
return false;
|
||||||
|
|
||||||
m_FileSize = m_Disc->GetSize();
|
m_FileSize = m_Disc->GetSize();
|
||||||
|
|
||||||
u32 numClusters = (u32)(m_FileSize / CLUSTER_SIZE);
|
u32 numClusters = (u32)(m_FileSize / CLUSTER_SIZE);
|
||||||
|
Loading…
Reference in New Issue
Block a user