mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
erpt: fix reading files that don't exist
This commit is contained in:
parent
e8ba632606
commit
14ed4e4057
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ namespace ams::erpt::srv {
|
|||
} else {
|
||||
R_UNLESS(mode == StreamMode_Read, erpt::ResultInvalidArgument());
|
||||
|
||||
fs::OpenFile(std::addressof(this->file_handle), path, fs::OpenMode_Read);
|
||||
R_TRY(fs::OpenFile(std::addressof(this->file_handle), path, fs::OpenMode_Read));
|
||||
}
|
||||
auto file_guard = SCOPE_GUARD { fs::CloseFile(this->file_handle); };
|
||||
|
||||
|
|
Loading…
Reference in a new issue