mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 15:19:57 +00:00
Merge pull request #8989 from merryhime/loader-nullptr
core/loader: Return nullptr if file is nullptr
This commit is contained in:
commit
0f6007b405
1 changed files with 4 additions and 0 deletions
|
@ -244,6 +244,10 @@ static std::unique_ptr<AppLoader> GetFileLoader(Core::System& system, FileSys::V
|
|||
|
||||
std::unique_ptr<AppLoader> GetLoader(Core::System& system, FileSys::VirtualFile file,
|
||||
u64 program_id, std::size_t program_index) {
|
||||
if (!file) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
FileType type = IdentifyFile(file);
|
||||
const FileType filename_type = GuessFromFilename(file->GetName());
|
||||
|
||||
|
|
Loading…
Reference in a new issue