mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 07:45:33 +01:00
Merge pull request #8619 from JosJuice/directoryblob-check-seek
DiscIO: Check for DirectoryBlob seek failure
This commit is contained in:
commit
166e86b97f
@ -104,8 +104,7 @@ bool DiscContent::Read(u64* offset, u64* length, u8** buffer) const
|
|||||||
if (std::holds_alternative<std::string>(m_content_source))
|
if (std::holds_alternative<std::string>(m_content_source))
|
||||||
{
|
{
|
||||||
File::IOFile file(std::get<std::string>(m_content_source), "rb");
|
File::IOFile file(std::get<std::string>(m_content_source), "rb");
|
||||||
file.Seek(offset_in_content, SEEK_SET);
|
if (!file.Seek(offset_in_content, SEEK_SET) || !file.ReadBytes(*buffer, bytes_to_read))
|
||||||
if (!file.ReadBytes(*buffer, bytes_to_read))
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user