mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-22 19:22:40 +02:00
erpt: fix reading files that don't exist
This commit is contained in:
parent
e8ba632606
commit
14ed4e4057
@ -85,7 +85,7 @@ namespace ams::erpt::srv {
|
|||||||
} else {
|
} else {
|
||||||
R_UNLESS(mode == StreamMode_Read, erpt::ResultInvalidArgument());
|
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); };
|
auto file_guard = SCOPE_GUARD { fs::CloseFile(this->file_handle); };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user