DiscIO: Check if m_Disc is null in ParsePartitionData()
This commit is contained in:
parent
b5fe028e18
commit
caa2f15105
|
@ -265,8 +265,14 @@ bool ParsePartitionData(SPartition& _rPartition)
|
||||||
|
|
||||||
// Ready some stuff
|
// Ready some stuff
|
||||||
m_Disc = CreateVolumeFromFilename(m_Filename, _rPartition.GroupNumber, _rPartition.Number);
|
m_Disc = CreateVolumeFromFilename(m_Filename, _rPartition.GroupNumber, _rPartition.Number);
|
||||||
std::unique_ptr<IFileSystem> filesystem(CreateFileSystem(m_Disc));
|
if (m_Disc == nullptr)
|
||||||
|
{
|
||||||
|
ERROR_LOG(DISCIO, "Failed to create volume from file %s", m_Filename.c_str());
|
||||||
|
m_Disc = OldVolume;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<IFileSystem> filesystem(CreateFileSystem(m_Disc));
|
||||||
if (!filesystem)
|
if (!filesystem)
|
||||||
{
|
{
|
||||||
ERROR_LOG(DISCIO, "Failed to create filesystem for group %d partition %u", _rPartition.GroupNumber, _rPartition.Number);
|
ERROR_LOG(DISCIO, "Failed to create filesystem for group %d partition %u", _rPartition.GroupNumber, _rPartition.Number);
|
||||||
|
|
Loading…
Reference in New Issue