libstrat: fix bugs/compiler warnings

This commit is contained in:
Michael Scire 2020-07-01 09:22:09 -07:00 committed by SciresM
parent 70e67da1e1
commit 0a53c74aad
8 changed files with 31 additions and 21 deletions

View file

@ -75,6 +75,7 @@ namespace ams::erpt::srv {
auto file_guard = SCOPE_GUARD { if (mode == StreamMode_Write) { fs::CloseFile(this->file_handle); } };
std::strncpy(this->file_name, path, sizeof(this->file_name));
this->file_name[sizeof(this->file_name) - 1] = '\x00';
this->buffer = reinterpret_cast<u8 *>(Allocate(buffer_size));
R_UNLESS(this->buffer != nullptr, erpt::ResultOutOfMemory());