From 64ec9a7421ddd05e83a3f1d34dfa521c86190f00 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 30 Apr 2021 14:44:53 -0700 Subject: [PATCH] erpt: fix reading files that don't exist --- libstratosphere/source/erpt/srv/erpt_srv_stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/source/erpt/srv/erpt_srv_stream.cpp b/libstratosphere/source/erpt/srv/erpt_srv_stream.cpp index 64d43aee..68863a75 100644 --- a/libstratosphere/source/erpt/srv/erpt_srv_stream.cpp +++ b/libstratosphere/source/erpt/srv/erpt_srv_stream.cpp @@ -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); };